Guest User

Untitled

a guest
Oct 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. ### Count Line in the folder
  2. ```
  3. find . -name '*.jl' | xargs wc -l
  4. ```
  5.  
  6. ### remove ._ files
  7. ```
  8. find . -iname '._*' -exec rm -rf {} \;
  9. ```
Add Comment
Please, Sign In to add comment