Strange bash piping method that actually does work. And fixing hard disk partitions with fsck.

This is a strange bash piping method that actually does work. This pipes the output of one echo command and appends it to another. ubuntu ~ $ echo "Hello World" >| echo "Me" > out.txtubuntu ~ $ echo "Hello World" >| echo "Me" > out.txt This is the result of this strange command. ubuntu ~ … Read more