Display file name and cat
contents for all files in directory
find . -type f -exec sh -c 'echo {} && cat {}' \;
Columnate text inputs
cat /etc/passwd | column -t -s ":" | less
Compare this to cat /etc/passwd
.
Found via Have you ever used the âcolumnâ command in Linux? and also included in Bash - Notes