Advertisement
Guest User

Dla_mirka

a guest
Dec 10th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #!/bin/bash
  2. find ~/Smieci/ -type d | while read line
  3. do
  4. cd $line
  5. find . -mindepth 1 -maxdepth 1 -type f | while read file
  6. do
  7. echo katalog: $line - plik: $file
  8. #sub-gaussian $file -p 4 -m 2000 -b 500 -w 1
  9. done
  10. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement