Björn Tantau ( @bjoern_tantau@swg-empire.de ) 93•1 year agoDoes anyone actually use
touch
for its intended purpose? Must be up there withcat
. funkajunk ( @funkajunk@lemm.ee ) English63•1 year agoTIL it’s actually for changing timestamps.
BestBouclettes ( @BestBouclettes@jlai.lu ) 60•1 year agoThe intended use of
touch
is to update the timestamp right? Björn Tantau ( @bjoern_tantau@swg-empire.de ) 76•1 year agoYeah. It could just as well have issued a file not found error when you try to touch a nonexistent file. And we would be none the wiser about what we’re missing in the world.
4am ( @4am@lemm.ee ) 13•1 year ago“Do one thing and do it very well” is the UNIX philosophy after all; if you’re 99% likely to just create that missing file after you get a file not found error, why should
touch
waste your time? Trailblazing Braille Taser ( @0x0@lemmy.dbzer0.com ) 26•1 year agoBecause now touch does two things.
Without touch, we could “just” use the shell to create files.
: > foo.txt
deegeese ( @deegeese@sopuli.xyz ) 16•1 year agoTouch does one thing from a “contract” perspective:
Ensure the timestamp of is
dan ( @dan@upvote.au ) 12•1 year agoSystemd also does one thing from a contract perspective: run your system
emptiestplace ( @emptiestplace@lemmy.ml ) 4•1 year agoOh no.
:(
dukk ( @dukk@programming.dev ) 2•1 year agoDoes it do it well, though?
stebo ( @stebo02@lemmy.dbzer0.com ) 13•1 year agowith this logic, any command that moves, copies or opens a file should just create a new file if it doesn’t exist
and now you’re just creating new files without realising just because of a typo
Kusimulkku ( @Kusimulkku@lemm.ee ) 7•1 year agoBut this directly goes against that philosophy, since now instead of changing timestamps it’s also creating files
BestBouclettes ( @BestBouclettes@jlai.lu ) 7•1 year agoIf you
touch -c
it should work I guess
Züri ( @zurchpet@lemmy.ml ) 23•1 year agoWe use it to trigger service restarts.
touch tmp/service-restart.txt
Using
monit
to detect the timestamp change and do the actual restart command. dan ( @dan@upvote.au ) 6•1 year agoThis is an interesting idea to allow non-root users to restart a service. It looks like this is doable with systemd too. https://superuser.com/a/1531261
Züri ( @zurchpet@lemmy.ml ) 2•1 year agoIndeed. Replacing monit with systemd for this job is still on our todo list.
magic_lobster_party ( @magic_lobster_party@kbin.run ) 19•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.
wewbull ( @wewbull@feddit.uk ) English14•1 year ago$ cat file1 > output_file $ cat file2 >> output_file $ cat file3 >> output_file
I’m sorry!
dan ( @dan@upvote.au ) 4•1 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
tubaruco ( @tubaruco@lemm.ee ) 15•1 year agowhat is cat’s use if not seeing whats inside a file?
Navigate ( @Navigate@lemmings.world ) 38•1 year agoIt is short for concatenate, which is to join things together. You can give it multiple inputs and it will output each one directly following the previous. It so happens to also work with just one input.
Mad_Punda.de ( @Mad_Punda@feddit.de ) 2•1 year agoTIL
I never realized. Thanks!
- ulterno ( @ulterno@lemmy.kde.social ) English16•1 year ago
It is to use along with
split
. e.g.- You take a single large file, say 16GB
- Use
split
to break it into multiple files of 4GB - Now you can transfer it to a FAT32 Removable Flash Drive and transfer it to whatever other computer that doesn’t have Ethernet.
- Here, you can use
cat
to combine all files into the original file. (preferably accompanied by a checksum)
NotSteve_ ( @NotSteve_@lemmy.ca ) 10•1 year agoI used it recently to update the creation date of a bunch of notes. Just wanted them to display in the correct order in Obsidian. Besides that though, always just used it for file creation lol
noproblemmy ( @noproblemmy@programming.dev ) 8•1 year agocat
Ahhhhh, fuck. I’m quite noob with linux. I got into some rabbit hole trying to read the docs. I found 2 man pages, one is cat(1) and the other cat(1p). Apparently the 1p is for POSIX.
If someone could help me understand… As far as I could understand I would normally be concerned with (1), but what would I need to be doing to be affected by (1p)?
survivalmachine ( @survivalmachine@beehaw.org ) 7•1 year agoThe POSIX standard is more portable. If you are writing scripts for your system, you can use the full features in the main man pages. If you are writing code that you want to run on other Linux systems, maybe with reduced feature sets like a tiny embedded computer or alternates to gnu tools like alpine linux, or even other unixes like the BSDs, you will have a better time if you limit yourself to POSIX-compatible features and options – any POSIX-compatible Unix-like implementation should be able to run POSIX-compliant code.
This is also why many shell scripts will call #!/bin/sh instead of #!/bin/bash – sh is more likely to be available on tinier systems than bash.
If you are just writing scripts and commands for your own purposes, or you know they will only be used on full-feature distributions, it’s often simpler and more comfortable to use all of the advanced features available on your system.
Crow ( @Crow@lemmy.blahaj.zone ) 6•1 year agoI mean, timestamps aren’t really all that useful. Really just if you do some stuff with makefiles but even then it’s a stretch. I did once use cat for its intended purpose tho, for a report. We split up the individual chapters into their own files so we have an easier time with git stuff, made a script that had an array with the files in the order we wanted, gave it to cat and piped that into pandoc
Trainguyrom ( @Trainguyrom@reddthat.com ) English6•1 year agoTouch is super useful for commands that interact with a file but don’t create the file by default. For example, yesterday I needed to copy a file to a remote machine accessible over ssh so I used
scp
(often known as “secure copy”) but needed totouch
the file in order to create it beforescp
would copy into it emptiestplace ( @emptiestplace@lemmy.ml ) 7•1 year agoSorry, what?
makingStuffForFun ( @makingStuffForFun@lemmy.ml ) 2•1 year agoI use it regularly
mox ( @mox@lemmy.sdf.org ) 1•1 year agoCreating an empty file is one of its intended purposes. Unix commands were designed as multi-purpose primitives, so they could be reused and composed to handle many different tasks. The touch command is no exception.
sqw ( @sqw@lemmy.sdf.org ) English0•1 year agoi use both frequently but im also a pretty dumb user
dubyakay ( @dubyakay@lemmy.ca ) 32•1 year agoThese are some weird looking dolph— oh
null ( @null@slrpnk.net ) 27•1 year agoIs there a command that’s actually just for creating a new file?
Gamma ( @gamma@programming.dev ) English20•1 year agoNope. If you open a nonexistent path and you have permissions to write to that directory, then that file is created.
ezchili ( @ezchili@iusearchlinux.fyi ) 9•1 year agoI guess printf “” > file
Midnitte ( @Midnitte@beehaw.org ) English8•1 year agoI mean,
nano filename
will work, but there’s no mkfile that I can find…$>filename
would also work, but it’s not explicitly for creating a new file tranzystorek_io ( @tranzystorek_io@beehaw.org ) English6•1 year agomost shells will accept outputting from a silent command to a file, e.g.
:> foo.txt
(where:
is the posix synonym to thetrue
command) dan ( @dan@upvote.au ) 4•1 year agoHow often do you actually need a blank file though? Usually you’d be writing something in the file.
null ( @null@slrpnk.net ) 1•1 year agoI’m betting that’s why none ever materialized. Most tools that can manipulate a file, can also create that file first, so there’s just never been a usecase.
Right-clicking the desktop to create a new txt file in Windows feels so natural, but I can’t really think of any time you’d want to create a new file and do nothing with it in a CLI.
schnurrito ( @schnurrito@discuss.tchncs.de ) 3•1 year agoYou might if some other program checks whether that file exists and behaves differently depending on that.
null ( @null@slrpnk.net ) 1•1 year agoBut even still, what’s a realistic usecase that would that involve needing a blank, unmodified file in that instance?
Zozano ( @Zozano@lemy.lol ) 26•1 year agoSame energy as Joan Cornella’s comics
Schorsch ( @Schorsch@feddit.de ) 7•1 year ago'Murica!
makingStuffForFun ( @makingStuffForFun@lemmy.ml ) 12•1 year agoAs a Linux user, that is truly magical, and beautiful.