aboutsummaryrefslogtreecommitdiff
path: root/chownme
diff options
context:
space:
mode:
Diffstat (limited to 'chownme')
-rwxr-xr-xchownme18
1 files changed, 0 insertions, 18 deletions
diff --git a/chownme b/chownme
deleted file mode 100755
index 4a37e90..0000000
--- a/chownme
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-#
-# Chown a destination to the current user.
-#
-
-# Parameters
-BASENAME="`basename $0`"
-DEST="$*"
-ME="$(whoami)"
-
-# Check
-if [ -z "$1" ]; then
- echo "usage: $BASENAME <dest>"
- exit 1
-fi
-
-# Proceed
-sudo chown -R $ME. "$DEST"