Stefan Bienert [off-list ref] 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 .."