6 lines
88 B
Bash
6 lines
88 B
Bash
#!/bin/rc
|
|
grep ' ' $* | awk '
|
|
$2 != "\"" {last = $4}
|
|
{printf("\t%s\t%s\n", $1, last)}
|
|
'
|