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.
当我输入命令时
cp notExistsFile.txt ~/Desktop/
它给出了一个错误:“cp:无法统计`notExistsFile.txt':没有这样的文件或目录”
是“cp 命令”有任何选项,如果文件不退出它不会给出任何错误,它只是跳过它。
我正在从 shell 脚本执行此操作
您始终可以将标准错误重定向到/dev/null
/dev/null
cp notExistsFile.txt ~/Desktop/ 2>/dev/null