Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. while read ...
  2. is_excluded=0
  3. for ex in $EXCLUDE
  4. do
  5. if [ "$db" == "$ex" ]
  6. then
  7. is_excludes=1
  8. fi
  9. done
  10. if [ $is_excluded -eq 0 ];
  11. then
  12. echo "$db" >> /tmp/bazy
  13. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement