mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
8 lines
126 B
Awk
8 lines
126 B
Awk
|
# echo - print command-line arguments
|
||
|
|
||
|
BEGIN {
|
||
|
for (i = 1; i < ARGC; i++)
|
||
|
printf "%s ", ARGV[i]
|
||
|
printf "\n"
|
||
|
}
|