mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
5 lines
133 B
Plaintext
5 lines
133 B
Plaintext
$ECHO -ne "abc\ndef\n123\n" >input
|
|
$ECHO -ne "def\n123\n" >logfile.ok
|
|
busybox tail -n 2 input > logfile.bb
|
|
cmp logfile.ok logfile.bb
|