5

Tip #673   Backup all files in directory

The command below can be used to backup all files in a directory

IFS=$'\n';for file in *; do cp ${file}{,.bak}; done

Quick explanation:
1. Set IFS - This allows for files with spaces in their name.
2. Use all files (*) - Change this to only backup certain files.
3. Use expansion to copy each file from 'filename' to 'filename.bak'
 
  • TAGS:
  • cp