blob: b11e4717dc84a00c24280c741e0506a20106962f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -e
. t/common.sh
printf '%s\n' > file \
"${HEAD} Tail" \
tail \
"${END} Tail"
printf '%s\n' > file.expected \
tail
error --select-tail --no-reduce file
|