![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Regular Expressions | ramky79 | UNIX for Advanced & Expert Users | 3 | 05-21-2008 05:13 PM |
| regular expressions | whatever | Shell Programming and Scripting | 4 | 05-20-2007 04:30 PM |
| Help with regular expressions | arushunter | Shell Programming and Scripting | 13 | 12-24-2006 12:31 AM |
| regular expressions in c++ | szzz | High Level Programming | 2 | 10-06-2003 10:33 AM |
| Regular Expressions | AresMedia | Shell Programming and Scripting | 1 | 08-22-2002 03:55 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Hi,
Sorry to bother you again, can I shorthand this also? if ! [ -f "$@" ] && ! [ -d "$@" ]; then again I tried this: #if ! [ -f -d "$@" ]; then but it didn't work, I have some code which works to about 90% as I need it but I want to reduce the code as much as possible. Thanks again! |
|
||||
|
no -
-f checks if the file exists and is a regular file -d checks if the file exists and is a directory These are mutually exclusive, so you have to make both tests, and they need to be separate tests maybe like this Code:
if [[ ! -f "$@" && ! -d "$@" ]] ; then -- do stuff fi |
![]() |
| Bookmarks |
| Tags |
| regex, regular expressions |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|