10 lines
102 B
Bash
10 lines
102 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# shell wrapper for sed editor script to reverse lines
|
||
|
|
||
|
sed -n '{
|
||
|
1!G
|
||
|
h
|
||
|
$p
|
||
|
}' $1
|