dotfiles/.local/bin/+x
2023-08-15 10:08:37 +02:00

8 lines
120 B
Bash
Executable file

#!/bin/bash
# +x [file]
# make a file executable
if [ -z "$1" ]; then
echo "usage: +x [file]"
exit 1
fi
chmod +x $@