5 lines
73 B
Awk
5 lines
73 B
Awk
|
BEGIN {
|
||
|
split ("a b c d e", ARGV);
|
||
|
for (i in ARGV) print i, ARGV[i];
|
||
|
}
|