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

7 lines
129 B
Text
Raw Normal View History

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