mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 15:39:42 +00:00
20 lines
492 B
Bash
Executable File
20 lines
492 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$1" == "status" ]]; then
|
|
cat << 'TMUTIL_OUTPUT'
|
|
Backup session status:
|
|
{
|
|
ClientID = "com.apple.backupd";
|
|
Running = 1;
|
|
}
|
|
TMUTIL_OUTPUT
|
|
elif [[ "$1" == "destinationinfo" ]]; then
|
|
cat << 'DEST_OUTPUT'
|
|
====================================================
|
|
Name : TestBackup
|
|
Kind : Local
|
|
Mount Point : /Volumes/TestBackup
|
|
ID : 12345678-1234-1234-1234-123456789012
|
|
====================================================
|
|
DEST_OUTPUT
|
|
fi
|