From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23383 invoked by alias); 26 Jan 2015 18:43:43 -0000 Mailing-List: contact jit-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Subscribe: Sender: jit-owner@gcc.gnu.org Received: (qmail 23290 invoked by uid 89); 26 Jan 2015 18:43:42 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-0.0 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-Status: No, score=-0.0 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: resqmta-po-01v.sys.comcast.net Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: [PATCH] update_web_docs_svn: support the JIT docs (PR jit/64257) From: Mike Stump In-Reply-To: Date: Thu, 01 Jan 2015 00:00:00 -0000 Cc: David Malcolm , jit@gcc.gnu.org, gcc-patches@gcc.gnu.org Content-Transfer-Encoding: 7bit Message-Id: References: <1422053051-11954-1-git-send-email-dmalcolm@redhat.com> To: Gerald Pfeifer X-Mailer: Apple Mail (2.1878.6) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20140121; t=1422297818; bh=BAeqJbYenDtV9Tbli5R3zE04oBlDJsJAkt3PM6uBueU=; h=Received:Received:Content-Type:Mime-Version:Subject:From:Date: Message-Id:To; b=VnXOc1SV2+HY5RP/q50nN799bm5KCueAPDTm2t52LXrExHi5t3YtYzeKGppHhAEyr LX7Lgxn4qO+hjpp4GjiKhNkz/NeKCeWCRiqn0TC1W0PB2RzMN0ZD+cpflMX9Hu0jLV 3uFfX/PgSCLbqP+grqNCSRJ6LbT8DT9poUESrP1cTnYfS4kWrW82somNi1gneRZYrJ Xz3jxo2c+aXORyFGyfm+OOKh1OX909FiC2ecOZmiPbH9i1XgdvzCBIAdI7fETTwRLS blw3jE7quxMHNJCUAiEn9WkRSVI98scy4/bRw8qKEAvmno2GotwFjG0obVSMihW/kL t63feFf5BI/Fg== X-SW-Source: 2015-q1/txt/msg00041.txt.bz2 On Jan 26, 2015, at 3:43 AM, Gerald Pfeifer 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.