Skip to content

Instantly share code, notes, and snippets.

@wrzasa
Last active January 3, 2016 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wrzasa/8496245 to your computer and use it in GitHub Desktop.
Save wrzasa/8496245 to your computer and use it in GitHub Desktop.
Testing a tool
time = Time.now
# sleep 7
puts (1..100).reduce(:*)
# sleep 70
system 'ls -alh /'
system 'ls -alh /mnt'
system 'whoami'
File.open "/mnt/testfile", "w" do |f|
f.puts "Zapisałem: #{Time.now}"
end
puts "Gist finished: #{Time.now - time}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment