chraebsli to Programmer [email protected] • 11 months agoTouch a file in Linuxprogramming.devimagemessage-square91fedilinkarrow-up11.17Karrow-down129
arrow-up11.14Karrow-down1imageTouch a file in Linuxprogramming.devchraebsli to Programmer [email protected] • 11 months agomessage-square91fedilink
minus-square@[email protected]linkfedilink6•11 months ago.“:>>” is “append null” right? Do you get a file with a single ASCII NUL or is it truly empty?
minus-squareTrailblazing Braille Taserlinkfedilink14•11 months agoNot 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.
minus-square@[email protected]linkfedilink4•edit-211 months ago$ :|wc -c 0 $ touch /tmp/f; :>>/tmp/f; wc -c /tmp/f 0 /tmp/f
.“:>>” is “append null” right? Do you get a file with a single ASCII NUL or is it truly empty?
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.
$ :|wc -c 0 $ touch /tmp/f; :>>/tmp/f; wc -c /tmp/f 0 /tmp/f