chraebsli@programming.dev to Programmer Humor@programming.dev · 1 year agoTouch a file in Linuxprogramming.devimagemessage-square58fedilinkarrow-up1680arrow-down113
arrow-up1667arrow-down1imageTouch a file in Linuxprogramming.devchraebsli@programming.dev to Programmer Humor@programming.dev · 1 year agomessage-square58fedilink
minus-squaremagic_lobster_party@kbin.runlinkfedilinkarrow-up19arrow-down1·1 year agoI sometimes use cat to concatenate files. For example, add a header to a csv file without manually copy and paste it. It’s rare, but at least more frequent than using touch.
minus-squarewewbull@feddit.uklinkfedilinkEnglisharrow-up13·1 year ago$ cat file1 > output_file $ cat file2 >> output_file $ cat file3 >> output_file I’m sorry!
minus-squaredan@upvote.aulinkfedilinkarrow-up4·edit-21 year agoThat’s its intended purpose - combining files together (the opposite of split). See the first line of the man page: https://man7.org/linux/man-pages/man1/cat.1.html
I sometimes use cat to concatenate files. For example, add a header to a csv file without manually copy and paste it. It’s rare, but at least more frequent than using touch.
$ cat file1 > output_file $ cat file2 >> output_file $ cat file3 >> output_file
I’m sorry!
That’s its intended purpose - combining files together (the opposite of
split
). See the first line of the man page: https://man7.org/linux/man-pages/man1/cat.1.html