diff options
-rwxr-xr-x | copyPhotos | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -231,9 +231,9 @@ do grep "${re}.*\.[jJ][pP][gG]\$" || true )" fi - if [ "$(echo "${bild}" | wc -l | cut -d' ' -f1)" -ne 1 ] || [ -z "${bild}" ] + if [ "$(printf '%s' "${bild}" | wc -l)" -ne 1 ] then - echo 'Nicht genau ein Treffer, sondern '"$(echo "${bild}" | wc -l | cut -d' ' -f1)"':' + echo 'Nicht genau ein Treffer, sondern '"$(printf '%s' "${bild}" | wc -l)"':' echo "${bild}" | \ sed 's|^| |' read s |