this post was submitted on 17 Mar 2024
1164 points (97.5% liked)

Programmer Humor

19207 readers
1318 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
[–] 4am@lemm.ee 6 points 6 months ago (2 children)

.“:>>” is “append null” right? Do you get a file with a single ASCII NUL or is it truly empty?

[–] 0x0@lemmy.dbzer0.com 14 points 6 months ago

Not really. I believe : is the "true" builtin. So it's like running a program that exits with zero and writes nothing to stdout. The >> streams the empty stdout into the named file.

[–] al177@lemmy.sdf.org 4 points 6 months ago* (last edited 6 months ago)

$ :|wc -c 0 $ touch /tmp/f; :>>/tmp/f; wc -c /tmp/f 0 /tmp/f