9 lines
142 B
Bash
Executable file
9 lines
142 B
Bash
Executable file
#!/run/current-system/sw/bin/zsh
|
|
|
|
now=$(date +'%Y-%m-%d')
|
|
|
|
# Documents
|
|
cd /home/horseman
|
|
tar -cf backups/documents-$now.tar Documents
|
|
|
|
exit 0
|