Skip to content

Commit

Permalink
added note in bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
CosiMichele authored Sep 25, 2024
1 parent 7bb6a26 commit af3e369
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/04_talk_to_computer.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ Copy and paste the following commands into `backup.sh`
## Variables
#the directory you want to back up (e.g., shell-lesson-data)
SOURCE_DIR=$(find / -type d -name "shell-lesson-data" 2>/dev/null)
SOURCE_DIR=$(find / -type d -name "shell-lesson-data" 2>/dev/null) # Note: if you are working on your computer, this will look in every folder. Be careful with this line!
#location where the backup will be stored
BACKUP_DIR="$HOME/Backup"
Expand Down

0 comments on commit af3e369

Please sign in to comment.