|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | 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. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Change to directory and search some file in that directory in single command
I am trying to do the following task : Code:
export ENV=aaa export ENV_PATH=$(cd /apps | ls | grep $ENV) However, it's not working. What's the way to change to directory and search some file in that directory in single command Please help. Last edited by Scrutinizer; 01-21-2013 at 07:10 AM.. Reason: code tags |
| Sponsored Links | ||
|
|
#2
|
||||
|
||||
|
Try replacing the first pipe by a semicolon.
|
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
... or better replace it by && (two ampersand = logical "and"; only continue with the "ls | grep ..." if the "cd ..." was succesful).
|
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Single command to delete a directory | jorogon0099 | Homework & Coursework Questions | 5 | 10-13-2009 06:10 PM |
| CD (change directory) - Not advisable for executing a command | samplify | Shell Programming and Scripting | 2 | 05-27-2009 10:13 AM |
| Change directory command (cd) | c00kie88 | Shell Programming and Scripting | 21 | 07-11-2008 10:01 AM |
| search in a directory using grep command | malaymaru | Shell Programming and Scripting | 4 | 05-23-2005 09:45 AM |
| Change directory command (cd) | oscarr | Shell Programming and Scripting | 4 | 08-23-2002 08:30 AM |
|
|