Skip to content

Instantly share code, notes, and snippets.

@nise-nabe
Created July 4, 2013 03:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nise-nabe/5924665 to your computer and use it in GitHub Desktop.
Save nise-nabe/5924665 to your computer and use it in GitHub Desktop.
#!/bin/bash
function f0 {
return 0;
}
function f1 {
return 1;
}
f0 && echo "test1";
f0 || echo "test2";
f1 && echo "test3";
f1 || echo "test4";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment