I want to write a bash function that check if a file has certain properties and returns true or false.. then I can use it in my scripts in the "if". But what should I return?
function myfun(){ ... return 0; else return 1; fi;}
then I use it like this:
if myfun filename.txt; then ...
of course this doesn't work.. how can this be accomplished?
functionkeyword,myfun() {...}suffices – glenn jackman Mar 25 '11 at 13:33ifis the zero-exit status ofmyfun: ifmyfunexits with0,then ...is executed; if it is anything elseelse ...is executed. – Eelvex Mar 25 '11 at 18:26