1
我想將輸出重定向到stderr。我有一個cron作業將輸出重定向到stderr
function auth_tester {
cd /data/$1/current && bundle exec rake 'authentication:tester' 1> /dev/null
}
它調用rake任務
namespace :authentication do
desc "Automatically runs authentication tester and notifies in case of failure"
task :tester => :environment do
auth_tester_results = AuthenticationTester.perform
exit(auth_tester_results.success? ? 0 : 1)
end
end
如果「auth_tester_results」布爾是假的我想將輸出重定向到stderr。如何做呢?
我的問題是如何將重定向我的失敗輸出到stderr。您的回答對於如何將stderr重定向到stdout也很有幫助。但請回答如何將我的故障輸出重定向到stderr – krishna
請參閱更新。 – mudasobwa