On Jan 26, 2015, at 3:43 AM, Gerald Pfeifer <ger...@pfeifer.com> wrote: >> +# Again, the jit is a special case, with nested subdirectories >> +# below "jit", and with some non-HTML files (.png images from us, >> +# plus .js and .css supplied by sphinx). >> +for file in $(find jit \ >> + -name "*.html" -o -name "*.css" \ >> + -o -name "*.js" -o -name "*.png"); do > > This looks like a Bash-ism. Can you use back ticks
http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html $() is standard and preferred over back ticks. :-) Life goes on.