You must log in or # to comment.
Useless use of cat award.
Who
cats intowc?
Huh, I actually forgot
catis used to join several files together. Last time I needed to concatenate two files, I did{ cat file1 ; cat file2 ; } > outputBut the most valid case is when I want to unpack .gz or .xz archive but do not want to delete the original file, as
xz -dwill do by default. So I naturally docat input.img.xz | xz -d > output.imgI’ve heard rumours that
xzhas a special option to not delete the original file, but I know no one brave enough to search through thexzmanpage.

