summaryrefslogtreecommitdiff
path: root/src/bin/mount-a
diff options
context:
space:
mode:
authorAndreas Fankhauser2023-12-01 15:23:00 +0100
committerAndreas Fankhauser2023-12-01 15:23:00 +0100
commit8528b98779b05bea3661bd2545b6554380aae4f4 (patch)
treed47516e3db527cccbc2389ef21c3f5cd22ea3de0 /src/bin/mount-a
parentfd9411ec6026ad876303ed714bee725a2d9df26a (diff)
parent7333ac4abe0723cbe53636feac37a4de2c790146 (diff)
downloaddotfiles-8528b98779b05bea3661bd2545b6554380aae4f4.zip
dotfiles-8528b98779b05bea3661bd2545b6554380aae4f4.tar.gz
Merge remote-tracking branch 'gh-hiddenalpha/master'
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
-