S
Systems Programming
Rust, C, C++, Go, and low-level programming
'tac' - concatenate and print in reverse - Video Man Pages
The 'tac' command is used to concatenate files and print them in reverse. - Print the contents of a file in reverse (by line) to stdout: tac path/to/file - Concatenate specific files in reverse: tac file1 path/to/file2 ... - Display stdin in reversed order: printf "one\ntwo\nthree\n" | tac ...