Trace: linux_commands

Linux Commands

This is an old revision of the document!


Linux Commands

Copy

copy “new” folder to the “old” folder, and cover all files in “old”.

cp -frap new/* old/
  • -f is force
  • -r means recursive, include any folder
  • -a make a backup. Don't rely on it!
  • -p Keep the properties of this file.