Created
December 14, 2017 07:24
-
-
Save iamazeem/246d54b01381e44b1445bdb3bf0e3bdd to your computer and use it in GitHub Desktop.
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
| # Print progress on same line | |
| (1..10).each do |i| | |
| print "\rDownloaded: #{i} of 10" | |
| sleep 1 | |
| end | |
| puts | |
| puts 'Rest of the logs here...' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment