Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. ????????? ? ? ? ? ? 100.jpg
  2.  
  3. sh-4.1$ ls -i .
  4. 17921 somefile.ods
  5. 169 someotherfile.conf
  6. 305 -????????? ? ? ? ? ? 100.jpg
  7. 18048 yetanotherfile.jpg
  8.  
  9. sh-4.1$ find . -maxdepth 1 -inum 305 -ok rm '{}' ;
  10. < rm ... -????????? ? ? ? ? ? 100.jpg > ? y
  11.  
  12. rm -i ./*100.jpg*
  13.  
  14. rm *100.jpg*
  15.  
  16. ls -1 | grep -P "[x80-xFF]" | xargs rm
  17.  
  18. # ls -l /tmp/dependencies/
  19. ls: cannot access /tmp/dependencies/easy-rsa-master: No such file or directory
  20. total 0
  21. ?????????? ? ? ? ? ? easy-rsa-master
  22.  
  23. # ls -i /tmp/dependencies/
  24. ls: cannot access /tmp/dependencies/easy-rsa-master: No such file or directory
  25. ? easy-rsa-master
  26.  
  27. # rm -r /tmp/dependencies
  28. rm: descend into directory ‘dependencies’? y
  29. rm: cannot remove ‘/tmp/dependencies/easy-rsa-master’: No such file or directory
  30. rm: remove directory ‘dependencies’? y
  31. rm: cannot remove ‘dependencies’: Directory not empty
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement