17 lines
465 B
Bash
Executable file
17 lines
465 B
Bash
Executable file
#!/bin/bash
|
|
# Simple program that changes ownership to the current
|
|
# user, recursively.
|
|
|
|
LD_INTERNAL=1
|
|
. $(dirname $(realpath $0))/daisy.source
|
|
|
|
if [[ $@ == '' ]];
|
|
then
|
|
echo "$LD_BIN: Used to quickly take ownership of files/folders."
|
|
echo "Requires sudo. If sudo is not installed, this tool will fai."
|
|
echo "Usage: $LD_BIN <folders or files>"
|
|
echo "Means: chown -R <youruser>:<youruser> <folders or files>"
|
|
exit 2
|
|
fi
|
|
|
|
sudo chown -R $(whoami):$(whoami) $@
|