dotfiles/.local/bin/scripts/arg-test
2021-12-12 11:35:36 +01:00

8 lines
182 B
Bash
Executable file

#!/bin/sh
{
echo "$# Args: ${@:-DEFAULT}"
#echo "Starred: $*"
#echo "${@:-default}" | sed 's/\w\+/\0-w/g'
for last; do true; done
echo "Last arg: $last"
} | tee /tmp/args$(date +%s)