exec
コマンドとコマンドを混在させる場合、セミコロンの使用は機能しませんprint
。これを行う最善の方法は何ですか?
print "Initializing tests...\n"
print 'Testing 00_hello\n'
exec 'cd 00_hello; rspec hello_spec.rb; cd ..'
print 'Testing 01_temperature\n'
exec 'cd 01_temperature; rspec temperature_spec.rb; cd ..'