Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. evan@vbox  ~  cat hi.bash
  2. sleep .001
  3. evan@vbox  ~  cat test.bash
  4. #!/bin/bash
  5. COUNTER=0
  6. while [ $COUNTER -lt 1000 ]; do
  7. ./hi.bash
  8. let COUNTER=COUNTER+1
  9. done
  10. evan@vbox  ~  time ./test.bash
  11. ./test.bash 0.04s user 0.07s system 3% cpu 2.888 total
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement