aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2016-11-06 20:31:19 +0100
committerJeff King <peff@peff.net>2016-11-08 15:26:40 -0500
commitec2e8b3da21c884325c9764abc62251fcfbe6208 (patch)
tree622fa9d5adecb81ee819df74ddb8cbde97adeca0
parentt0021: expect more variations in the output of uniq -c (diff)
downloadgit-ec2e8b3da21c884325c9764abc62251fcfbe6208.tar.gz
git-ec2e8b3da21c884325c9764abc62251fcfbe6208.zip
t0021: compute file size with a single process instead of a pipeline
Avoid unwanted coding patterns (prodigal use of pipelines), and in particular a useless use of cat. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Jeff King <peff@peff.net>
-rwxr-xr-xt/t0021-conversion.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0021-conversion.sh b/t/t0021-conversion.sh
index db71acacb3..cb72fa49de 100755
--- a/t/t0021-conversion.sh
+++ b/t/t0021-conversion.sh
@@ -22,7 +22,7 @@ generate_random_characters () {
}
file_size () {
- cat "$1" | wc -c | sed "s/^[ ]*//"
+ perl -e 'print -s $ARGV[0]' "$1"
}
filter_git () {