Skip to content

Instantly share code, notes, and snippets.

@trptcolin
Created January 1, 2014 17:44
Show Gist options
  • Save trptcolin/8209889 to your computer and use it in GitHub Desktop.
Save trptcolin/8209889 to your computer and use it in GitHub Desktop.
$ ./hello_world
Hello World!
$ ./hello_world > output && cat output
Hello World!
$ ./hello_world >> output && cat output
Hello World!
Hello World!
$ ./hello_world >> output && cat output
Hello World!
Hello World!
Hello World!
$ ./hello_world
Hello World!
$ ./hello_world > output && cat output
Hello World!
$ ./hello_world >> output && cat output
Hello World!
$ ./hello_world >> output && cat output
Hello World!
$ cp /etc/passwd output && head -1 output
root:x:0:0:root:/root:/bin/bash
$ ./hello_world >> output && cat output
Hello World!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment