I have this code:
#!/bin/bash
# ~/test.sh
if [[ -p /dev/stdin ]]; then
var="-"
else
var="$1"
fi
l=$(cat -n "$var" | wc -l)
c=$(cat -n "$var" | wc -m)
echo l=$l
echo c=$c
If i run:
$ ./test.sh file.txt
l=73
c=4909 # it is correct
but if
cat file.txt | ./test.sh
l=73
c=0 #why i have 0???
i don't understand why i have c=0
cat file.txt | cat -n - | wc -c
works; so what's the problem with my code?
what am I doing wrong?
how can i make it work properly?
When you pipe rather than open a file, the difference is that the piped-in or
stdin
is a stream (no seek back to start).Consumes the whole stream to count lines.
When it reaches:
The
stdin
stream has all been consumed by the previous counting of lines. It has nothing to count left, thus returning0
.Fortunately
wc
can do both on the same run, and then you can read the result values like this: