5 lines
101 B
Plaintext
5 lines
101 B
Plaintext
|
#!/bin/sh
|
||
|
echo "Args: $@"
|
||
|
echo "Number of args: $#"
|
||
|
echo "${@:-default}" | sed 's/\(\w\+\)/\1+sed/g'
|