lackadaisical/own
Sam Hardeman 0912f2d3d4 - Many fixes to sourcing, now will always resolve to base dir.
- All scripts are again `sh` compatible.
- Binbox overhaul, symlinks finally work just like `busybox`.
- Error checking to some files like `sw` and `own`.
TODO: Make it pretty and make `short` already.
2025-09-22 08:34:50 +02:00

17 lines
472 B
Bash
Executable file

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