dotfiles/.local/bin/scripts/arg-test

8 lines
150 B
Plaintext
Raw Normal View History

#!/bin/sh
2021-10-22 15:15:09 +00:00
{
2021-07-17 20:48:33 +00:00
echo "$# Args: $@"
2021-10-31 19:27:18 +00:00
echo "${@:-default}" | sed 's/\w\+/\0-w/g'
2021-11-02 11:59:08 +00:00
for last; do true; done
echo "Last arg: $last"
2021-10-22 15:15:09 +00:00
} | tee /tmp/args$(date +%s)