Update 2023-04-30 19:45 OpenBSD/amd64-mini

This commit is contained in:
c0dev0id
2023-04-30 19:45:10 +02:00
parent 83b6d8b11e
commit 0f14587cf0
2 changed files with 26 additions and 2 deletions

24
.bin/checkmount Executable file
View 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