How can I use cp src/* des/ for copying all files which are not directories and without receiving the warning
cp: <my_dir> is a directory (not copied).?
Asked
Active
Viewed 673 times
cp src/* des/but without the warning message – Nisba Feb 01 '18 at 18:27cp src/* des/ 2>/dev/nulland send the standard error to null rather than seeing it in the terminal. Read more about it here http://www.learnlinux.org.za/courses/build/shell-scripting/ch01s04.html in the *stderr* section. – Vomit IT - Chunky Mess Style Feb 01 '18 at 19:32