Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. # up x: hace cd .. x veces
  2. function up() {
  3. times=$1
  4. while [ "$times" -gt "0" ]; do
  5. cd ..
  6. times=$(($times - 1))
  7. done
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement