linux-L3-linux 复制文件
linux 中要将文件file1.txt复制到目录dir中,可以使用以下命令
cp file1.txt dir/
复制文件
cp /path/to/source/file /path/to/destination
移动
mv /path/to/source/file /path/to/destination
复制文件夹内的文件
cp -a /path/to/source/file /path/to/destination
将文件夹内的指定bmp结尾的文件复制到指定的路径中
find /net/img_source/ -type f -name "*.bmp" -exec cp {} /net/target/ \;