summaryrefslogtreecommitdiff
path: root/src/bin/mount-a
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/mount-a')
-rw-r--r--src/bin/mount-a9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/bin/mount-a b/src/bin/mount-a
deleted file mode 100644
index 72bc6cc..0000000
--- a/src/bin/mount-a
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/bash
-
-if [[ $# -lt 1 ]] ; then
- echo -e "usage:\t$(basename $0) deviceToMount"
-else
- echo sudo mount -o gid=`id -g`,uid=`id -u` $1 /mnt/a/
- sudo mount -o gid=`id -g`,uid=`id -u` $1 /mnt/a/
-fi
-