Method: RightScale::Platform::Shell#format_redirect_stderr
- Defined in:
- lib/right_agent/platform.rb
#format_redirect_stderr(cmd, target = nil) ⇒ String
Appends STDERR redirection to the given shell command.
531 532 533 534 |
# File 'lib/right_agent/platform.rb', line 531 def format_redirect_stderr(cmd, target = nil) target ||= null_output_name return cmd + " 2>#{target}" end |