Update 2023-04-30 19:45 OpenBSD/amd64-mini
This commit is contained in:
24
.bin/checkmount
Executable file
24
.bin/checkmount
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
trap cleanup 1 2 3 6 9 11 13 15
|
||||
|
||||
cleanup() {
|
||||
doas umount /mnt
|
||||
mount | grep mnt
|
||||
}
|
||||
|
||||
usage() {
|
||||
echo "usage: $(basename "$0") sd1"
|
||||
dmesg |grep ^sd1 | tail -n2
|
||||
dmesg |grep ^sd2 | tail -n2
|
||||
dmesg |grep ^sd3 | tail -n2
|
||||
dmesg |grep ^sd4 | tail -n2
|
||||
exit 0
|
||||
|
||||
}
|
||||
|
||||
[ -z "$1" ] && usage
|
||||
|
||||
doas mount.exfat /dev/$1i /mnt/
|
||||
nnn /mnt/
|
||||
cleanup
|
||||
Reference in New Issue
Block a user