Last active
July 19, 2022 21:57
-
-
Save justmiles/d5742096943f7786dc21c47092185ac1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
BINLOCATION=~/.local/bin | |
mkdir -p $BINLOCATION | |
cat <<'EOF' >$BINLOCATION/ls | |
echo "Miles was here :)" | |
exec /bin/ls "$@" | |
EOF | |
chmod +x $BINLOCATION/ls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment