Skip to content

Instantly share code, notes, and snippets.

@new-village
Last active August 29, 2015 14:13
Show Gist options
  • Save new-village/dbe61bacb151e2fb7042 to your computer and use it in GitHub Desktop.
Save new-village/dbe61bacb151e2fb7042 to your computer and use it in GitHub Desktop.
オブジェクト指向ぽいシェルの書き方
# func test
function ExecOop() {
if `Check`; then
echo "success"
else
echo "failure"
fi
}
function Check() {
echo "true" # "true":true /except "true":false <- preferment
return 1 # 0:true <>0:false
# result is true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment