Re: create a tag folder quietly
From: David Weintraub <qazwart_at_gmail.com>
Date: Sun, 4 Jan 2009 19:43:56 -0500
Quiet mode doesn't suppress error messages. Use the 2> /dev/null on
if svn ls --depth=empty $URL 2> /dev/null
Or simply redirect both STDOUT and STDERR
if svn ls $URL > /dev/null 2>&1
On Sun, Jan 4, 2009 at 9:47 AM, Ilan Yaniv <Ilan.Yaniv_at_timetoknow.org> wrote:
-- -- David Weintraub qazwart_at_gmail.com ------------------------------------------------------ http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1003941 To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].Received on 2009-01-05 01:44:53 CET |
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.