tail -n +1 -- *.txt
more * | cat
for f in *; do echo "Filename: $f"; cat "$f"; done
find . -name \*.txt -print -exec cat {} \;
grep -r '.*' *.txt
tail -n +1 -- *.txt
more * | cat
for f in *; do echo "Filename: $f"; cat "$f"; done
find . -name \*.txt -print -exec cat {} \;
grep -r '.*' *.txt
相关文章: