mirror of
https://asciireactor.com/otho/cloudy-agn.git
synced 2025-01-19 09:15:09 +00:00
5 lines
126 B
Bash
5 lines
126 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
head -n1 $1
|
||
|
sed -n 2p $1|awk '{print $2,$1,$3}'
|
||
|
sed -n 3,`wc -l $1|cut -f1 -d' '`p $1|awk '{print $2,$1,$3}'|sort
|