DEBSOURCES
Skip Quicknav
sources / bash / 5.2.15-2 / examples / scripts / cat.sh
123456789101112
shcat() { while read -r ; do printf "%s\n" "$REPLY" done } if [ -n "$1" ]; then shcat < "$1" else shcat fi