私はparameters.iniファイルを持っています: [parameters.ini] database_user = user database_version = 20110611142248 処理できるように、bashシェルスクリプト内からparameters.iniファイルで指定されたデータベースバージョンを読み取って使用したいと思います。 #!/bin/sh # Need to get database version from parameters.ini file to use in script php app/console doctrine:migrations:migrate $DATABASE_VERSION どうすればいいですか?
スクリプト全体を強制終了せずに条件がtrueの場合に関数を終了するには、関数を呼び出す前に戻ってください。 例 # Start script Do scripty stuff here Ok now lets call FUNCT FUNCT Here is A to come back to function FUNCT { if [ blah is false ]; then exit the function and go up to A else keep running the function fi }