How can I copy a folder from the Linux command line?
Use the cp
command, but do it recursively:
cp -R /some/dir/ /some/other/dir/
If you want to print out each file copied, -Rv
There are text mode (console) file managers too. Midnight commander (command mc
) is one of them.