mirror of
https://git.busybox.net/busybox
synced 2025-05-10 04:33:59 +02:00
4 lines
133 B
Text
4 lines
133 B
Text
$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
|