Advertisement
pusatdata

BASH: Memindahkan File Keluar Folder

Sep 28th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. How to move all files from current directory to upper directory
  2.  
  3. hanya file jpg:
  4. mv *.jpg ../
  5.  
  6. semua file:
  7. mv *.* ../
  8.  
  9. termasuk folder:
  10. find . -maxdepth 1 -exec mv {} .. \;
  11.  
  12. nanti muncul spt error mv: cannot move `.' to `../.': Device or resource busy
  13. abaikan saja
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement