次のように、いくつかの環境設定のスクリプトを取得するビルド環境があります。
if test -f build_env
then
# Source the config file
. build_env
しかし、これがRHEL6で失敗しているように見える方法
sh-4.1$ . build_env
sh: .: build_env: file not found
RHEL4では動作します
sh-3.00$ . buildenv
sh-3.00$
何が問題になる可能性がありますか?