this post was submitted on 17 Mar 2024
1117 points (97.6% liked)

Programmer Humor

19154 readers
2012 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 21 points 6 months ago* (last edited 6 months ago) (7 children)

Feels dangerous to run. What happens if the file already exists and has something important in it?

touch -a is probably better

[–] [email protected] 9 points 6 months ago (6 children)

The other command could just be printf '' >> file to not overwrite it. Or even simpler >>file and then interrupt

[–] [email protected] 10 points 6 months ago (5 children)

or :>>file then you don't need to interrupt

[–] [email protected] 3 points 6 months ago (1 children)

that's awesome, did not know about that handy operator!

[–] [email protected] 3 points 6 months ago

Yeah!

it's basically a noop, I use it as a placeholder when I'm writing a script, since bash doesn't accept code blocks with no commands

load more comments (3 replies)
load more comments (3 replies)
load more comments (3 replies)