mirror of
https://github.com/brunofontes/linuxShortcuts.git
synced 2024-11-24 04:14:58 +00:00
8 lines
200 B
Bash
8 lines
200 B
Bash
|
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
|