Skip to content

Instantly share code, notes, and snippets.

@kjunichi
Created December 27, 2023 09:31
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 kjunichi/4bf9bcce8f135716414a4f5f03f91324 to your computer and use it in GitHub Desktop.
Save kjunichi/4bf9bcce8f135716414a4f5f03f91324 to your computer and use it in GitHub Desktop.

if文と関数の戻り値

foo() {
    return 0
}

foo2() {
    return 1
}

if foo ;then
echo "hoge"
else
echo "fuga"
fi

if foo2 ;then
echo "hoge"
else
echo "fuga"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment