Stefan Bienert <bienert@xxxxxxxxxxxxxxxxxx> writes: > Here is my script (cut down to a minimalist version resembling the problem): > > # SNIP > #!/bin/sh > > for my_p in $(git status --porcelain | awk '{ if ($0 ~ /\.(tex|sty)$/) { > print $2 } }') A tangent; perhaps "git status --porcelain '*.tex' '*.sty'" would help you lose the pipe and awk. > do > aspell -c -l en_GB -p $(pwd)/${my_cdup}share/dict/aspell.corb.pws > $my_p || exit 1 Not quite sure what my-cdup is here, but probably you would want to have something like this at the top of the script? #!/bin/sh "cd .." -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html