mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-23 21:20:50 +00:00
8 lines
200 B
Bash
Executable File
8 lines
200 B
Bash
Executable File
if [ $1 ]; then
|
|
sudo borg list $1
|
|
else
|
|
echo
|
|
echo "ERROR: Backup folder argument is missing. Use folder name to display backup set or FOLDER_NAME::BACKUP_SET to display files."
|
|
echo
|
|
fi
|