mirror of
https://github.com/eth-p/bat-extras.git
synced 2025-01-08 06:09:03 +01:00
test: Avoid using 'head'
This commit is contained in:
parent
7fa1faf7bf
commit
e79e747e71
@ -19,7 +19,7 @@ test:version() {
|
|||||||
snapshot stdout
|
snapshot stdout
|
||||||
snapshot stderr
|
snapshot stderr
|
||||||
|
|
||||||
batgrep --version | head -n1 | cut -d' ' -f1
|
batgrep --version | awk 'FNR <= 1 { print $1 }'
|
||||||
batgrep --version | awk 'p{print} /^$/ { p=1 }'
|
batgrep --version | awk 'p{print} /^$/ { p=1 }'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,6 +7,6 @@ test:version() {
|
|||||||
snapshot stdout
|
snapshot stdout
|
||||||
snapshot stderr
|
snapshot stderr
|
||||||
|
|
||||||
batman --version | head -n1 | cut -d' ' -f1
|
batman --version | awk 'FNR <= 1 { print $1 }'
|
||||||
batman --version | awk 'p{print} /^$/ { p=1 }'
|
batman --version | awk 'p{print} /^$/ { p=1 }'
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,6 @@ test:version() {
|
|||||||
snapshot stdout
|
snapshot stdout
|
||||||
snapshot stderr
|
snapshot stderr
|
||||||
|
|
||||||
batwatch --version | head -n1 | cut -d' ' -f1
|
batwatch --version | awk 'FNR <= 1 { print $1 }'
|
||||||
batwatch --version | awk 'p{print} /^$/ { p=1 }'
|
batwatch --version | awk 'p{print} /^$/ { p=1 }'
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,6 @@ test:version() {
|
|||||||
snapshot stdout
|
snapshot stdout
|
||||||
snapshot stderr
|
snapshot stderr
|
||||||
|
|
||||||
prettybat --version | head -n1 | cut -d' ' -f1
|
prettybat --version | awk 'FNR <= 1 { print $1 }'
|
||||||
prettybat --version | awk 'p{print} /^$/ { p=1 }'
|
prettybat --version | awk 'p{print} /^$/ { p=1 }'
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user