Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IkezoeMakoto/6e7970946afdc9c494d0e292ada2147e to your computer and use it in GitHub Desktop.
Save IkezoeMakoto/6e7970946afdc9c494d0e292ada2147e to your computer and use it in GitHub Desktop.
設定ファイルをバックアップとってシンボリックリンクにする
TARGET_FILE=/your/target_file/full_path
BACKUP_FILE=/your/backup_file/full_path
cp TARGET_FILE BACKUP_FILE
ln -snf BACKUP_FILE TARGET_FILE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment