2007年1月18日 星期四

Bash: function return value

作法有點 tricky
#!/bin/sh

main ()
{
return 123
}

main

echo $?

不然就是要用另外一個變數來存傳回值了~ :P

沒有留言: