vault backup: 2025-07-27 11:59:22

This commit is contained in:
2025-07-27 11:59:22 +02:00
parent d798fd491f
commit f6fd7a9e7b
2 changed files with 14 additions and 5 deletions

View File

@ -0,0 +1,9 @@
```
mountpoint=`system_profiler SPUSBDataType | grep "Mount Point" | sed 's/[ \t]*Mount Point:.//' | grep USB-JER-64G`
if [ -n "$mountpoint" ]; then
echo "present"
exit 0
else
exit 1
fi
```