chraebsli@programming.dev to Programmer Humor@programming.dev · 8 months agoTouch a file in Linuxprogramming.devimagemessage-square90fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1imageTouch a file in Linuxprogramming.devchraebsli@programming.dev to Programmer Humor@programming.dev · 8 months agomessage-square90fedilink
minus-squaremagic_lobster_party@kbin.runlinkfedilinkarrow-up0·8 months 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-up0·8 months ago$ cat file1 > output_file $ cat file2 >> output_file $ cat file3 >> output_file I’m sorry!
minus-squaredan@upvote.aulinkfedilinkarrow-up0·edit-28 months 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