Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $ if [ ! -z `find "WS1617/Übungsblätter" -type f -name "*
  2. .pdf" -print -quit` ]; then
  3. > echo "pdf file found!"
  4. > fi
  5. bash: [: WS1617/Übungsblätter/Blatt: binary operator expected
  6. $ if [ ! -z `find "Tut Repo.gitty" -type f -name "*.pdf"
  7. -print -quit` ]; then
  8. > echo "pdf file found!"
  9. > fi
  10. bash: [: Tut: binary operator expected
  11. $ if [ ! -z `find "WS1617/Vorlesungsfolien" -type f -name
  12. "*.pdf" -print -quit` ]; then
  13. > echo "pdf file found!"
  14. > fi
  15. pdf file found!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement