8 lines
182 B
Bash
Executable file
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)
|