mirror of
https://github.com/sheumann/hush.git
synced 2024-11-15 12:08:09 +00:00
10 lines
74 B
Plaintext
10 lines
74 B
Plaintext
|
echo 2 | busybox sed -e 'i\
|
||
|
1
|
||
|
a\
|
||
|
3' > output
|
||
|
cmp output - <<EOF
|
||
|
1
|
||
|
2
|
||
|
3
|
||
|
EOF
|