From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16054 invoked by alias); 23 Jan 2010 13:04:01 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 27620 Received: (qmail 24430 invoked from network); 23 Jan 2010 13:03:49 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received-SPF: none (ns1.primenet.com.au: domain at mycircuit.org does not designate permitted sender hosts) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=FLNw7BHwbCoA:10 a=IMQoeJUgQILLU9Vf30n77w==:17 a=gyR6ZNSMoICCqsQR7aIA:9 a=oRQAXW7f0N3bn0_BRGDflpoe5nAA:4 Received-SPF: none receiver=mailfe05.swip.net; client-ip=188.155.216.144; envelope-from=vmail@mycircuit.org Message-ID: <4B5AE59D.9020109@mycircuit.org> Date: Sat, 23 Jan 2010 13:03:41 +0100 From: Peter User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.7) Gecko/20100111 Thunderbird/3.0.1 MIME-Version: 1.0 To: Christian Walther , zsh-workers@zsh.org Subject: Re: what is the effect of a percentage sign (%) as last character on the command line References: <4B582F3C.2010709@mycircuit.org> <100121080540.ZM21444@torch.brasslantern.com> <4B58AB3A.7050300@mycircuit.org> <87hbqdu9xs.fsf@ft.bewatermyfriend.org> <4B5A26BA.5080307@mycircuit.org> <87fx5x6918.fsf@ft.bewatermyfriend.org> <4B5ABB0D.9010504@mycircuit.org> <14989d6e1001230228k22e32200s10db146bd8596dc2@mail.gmail.com> In-Reply-To: <14989d6e1001230228k22e32200s10db146bd8596dc2@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit > If you need to debug your configuration it is pretty save to just send > the name of the current file to stdout, e.g. by adding a echo to the > beginning of each file. You can even do this conditionally, for > example by adding > > export CONFIGDEBUG=true > > to /etc/zshenv if you're root on this machine, or to ~/.zshenv. > > And then you add something like > > [[ -n $CONFIGDEBUG ]]&& echo "Reading:" > > to each file. This way, you see what's happening and it's still easy > to disable the output. > > This seems to be a nice and easy solution, thanks ! Peter