bug-bash
[Top][All Lists]
Advanced

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

best way to test for empty dir?


From: Marc Herbert
Subject: best way to test for empty dir?
Date: Thu, 10 Dec 2009 17:31:20 +0000
User-agent: Thunderbird 2.0.0.21 (X11/20090320)

Hi,

Does anyone know a more elegant way to check for file existence?
Something that does not fork a subshell. And is also more readable
maybe. And is obviously not much longer.

empty_dir() 
{ 
    test "x$(echo $1/*$2)" = "x$1"'/*'"$2"
}


Warning: I find neither "noglob" nor "ls" elegant, sorry!





reply via email to

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