Advertisement
FaisalAhemdBijoy

folder copy

Sep 17th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.14 KB | None | 0 0
  1. echo  "for loop"
  2. #for os in ios linux windows android
  3. for os in `ls`
  4. do
  5.     echo $os
  6.    
  7.     mv $os ~/Desktop/labos
  8. done
  9. echo "Loop complete"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement