You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ timedog
None or only one Time Machine backups found at /usr/local/bin/timedog line 184.
# Note: "-m" switch isn't supported
$ tmutil listbackups -m
Usage: tmutil listbackups
$ tmutil listbackups
/Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-15-173037
/Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-16-120327
/Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-092929
/Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-120150
/Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-123744
/Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-125537
…
# Get all available backupsmy @backups=`tmutil listbackups -m`;
chomp @backups;
die"None or only one Time Machine backups found"if @backups<=1;
…
I'm not sure why timedog uses an -m switch/argument, but it seems that's not supported on (older?) versions of tmutil (e.g. under 10.10.5 Yosemite) and hence breaks things. After I fix it up it seemingly works again.
$ sudo sed -i -e 's|tmutil listbackups \-m|tmutil listbackups|g' /usr/local/bin/timedog
The text was updated successfully, but these errors were encountered:
Thank you for the report. I'll try to track down when this option came into being and see if can be gated on the macOS release. Which macOS release are you using? It is 10.10.5?
$ timedog None or only one Time Machine backups found at /usr/local/bin/timedog line 184. # Note: "-m" switch isn't supported $ tmutil listbackups -m Usage: tmutil listbackups $ tmutil listbackups /Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-15-173037 /Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-16-120327 /Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-092929 /Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-120150 /Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-123744 /Volumes/Time Machine/Backups.backupdb/Hostname/2024-06-17-125537
I'm not sure why timedog uses an
-m
switch/argument, but it seems that's not supported on (older?) versions of tmutil (e.g. under 10.10.5 Yosemite) and hence breaks things. After I fix it up it seemingly works again.The text was updated successfully, but these errors were encountered: