Thread (1 message) 1 message, 1 author, 2016-06-15

Re: pre-commit hook and Aspell

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:49:13

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 .."
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help