aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xchownme18
1 files changed, 18 insertions, 0 deletions
diff --git a/chownme b/chownme
new file mode 100755
index 0000000..d0a801d
--- /dev/null
+++ b/chownme
@@ -0,0 +1,18 @@
+#!/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
+chown -R $ME. $DEST