bug-patch
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug-patch] patch 2.7.4: tests/deep-directories unportable shell constru


From: Christian Weisgerber
Subject: [bug-patch] patch 2.7.4: tests/deep-directories unportable shell construct
Date: Sun, 1 Feb 2015 23:52:14 +0100
User-agent: Mutt/1.5.23 (2014-03-12)

The new deep-directories test in 2.7.4 uses an unportable shell
construct:

  ulimit -n 32 >& /dev/null || exit 77

This use of ">&" is a bash extension.
The standard shell idiom is:

  ulimit -n 32 > /dev/null 2>&1 || exit 77

-- 
Christian "naddy" Weisgerber                          address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]