Last active
January 3, 2016 17:29
-
-
Save wrzasa/8496245 to your computer and use it in GitHub Desktop.
Testing a tool
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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