Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将多个文件名(7 到 10)从 java 代码传递给 shell 脚本。文件名是根据条件从数据库中获取的,因此文件的数量不固定。最多为 10 个文件名。
在 shell 脚本中,我想将所有这些文件复制到不同的目录。
我正在做的是
cp -p "$@" /dir/temp/
但这似乎有效。我是 unix 和 shell 脚本的新手。谢谢。
您可以使用循环,其中 $@ 的内容被一一复制