Guest User

Untitled

a guest
Jan 20th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. read mam
  2. find "$mam" -type f -size +10k > size.txt
  3. while read line
  4. do
  5. mv "$line" /home/patakinorbert/Desktop/prk1
  6. done < size.txt
  7.  
  8. read -r mam
  9. find "$mam" -type f -size +10k -exec mv {} /home/patakinorbert/Desktop/prk1 ;
  10.  
  11. read -r mam
  12. find "$mam" -type f -size +10k -exec mv -t /home/patakinorbert/Desktop/prk1 +
Add Comment
Please, Sign In to add comment