...
Code Block |
---|
cat file1.txt cat -E job.sh #display# display a $ at the end of each line, which can help visualize extra spacing cat -n file2.txt # -n option cat displays line numbers cat -v foo.txt # -v: Display non-printing characters, except for tabs and end-of-line characters. cat -T foo.txt # -T: Show tab characters as ^I. |
more [file]
: View file content one screen at a time.
...