blob: f803cf2d661c51c62da0bda51649042d5ca4a87f (
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} Head" \
head \
"${END} Head"
printf '%s\n' > file.expected \
head
error --select-head --no-reduce file
|