mirror of
https://github.com/opnsense/src.git
synced 2026-07-09 01:02:30 -04:00
6 lines
90 B
Bash
Executable file
6 lines
90 B
Bash
Executable file
#!/bin/sh
|
|
awk 'NR == 1 {
|
|
for (i = 9; i <= NF; i++)
|
|
printf "%s ", $i
|
|
printf "\n"
|
|
}' $*
|