Updated mcollective.init according to OSCI-658
[packages/precise/mcollective.git] / lib / mcollective / vendor / systemu / samples / b.rb
diff --git a/lib/mcollective/vendor/systemu/samples/b.rb b/lib/mcollective/vendor/systemu/samples/b.rb
new file mode 100644 (file)
index 0000000..951dce1
--- /dev/null
@@ -0,0 +1,12 @@
+#
+# quite a few keys can be passed to the command to alter it's behaviour.  if
+# either stdout or stderr is supplied those objects should respond_to? '<<'
+# and only status will be returned
+#
+  require 'systemu'
+
+  date = %q( ruby -e"  t = Time.now; STDOUT.puts t; STDERR.puts t  " )
+
+  stdout, stderr = '', ''
+  status = systemu date, 'stdout' => stdout, 'stderr' => stderr
+  p [ status, stdout, stderr ]