cp
命令结合通配符和循环来批量复制文件。使用 for
循环和通配符可以批量复制指定目录下的所有文件到目标目录:,,``bash,for file in /path/to/source/*; do cp "$file" /path/to/destination/; done,
``cp
命令结合通配符和循环来批量复制文件。使用 for
循环和通配符可以批量复制指定目录下的所有文件到目标目录:,,``bash,for file in /path/to/source/*; do cp "$file" /path/to/destination/; done,
``Powered By Z-BlogPHP 1.7.3