update repository
[cmdllinux.git] / bash_n_examples / bash / pipe / _pipe_in.sh
blob62ce1e4ec0439060875737fff49e3da75313d105
1 echo asd | if [ -p /dev/stdin ]; then while read var; do echo $var; done < /dev/stdin; fi