5 lines
129 B
Plaintext
5 lines
129 B
Plaintext
echo -ne "abc\ndef\n123\n" >input
|
|
echo -ne "def\n123\n" >logfile.ok
|
|
busybox tail -2 input > logfile.bb
|
|
cmp logfile.ok logfile.bb
|