diff options
-rwxr-xr-x | Scripts/mountFstab.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Scripts/mountFstab.sh b/Scripts/mountFstab.sh new file mode 100755 index 0000000..c778750 --- /dev/null +++ b/Scripts/mountFstab.sh @@ -0,0 +1,7 @@ + +tomnt=$( cat /etc/fstab | grep mnt | sed "s:.* \(/mnt/[^ ]*\) .*:\1:g" | dmenu ) + +mount $tomnt +st -e ranger $tomnt +sync +umount $tomnt |