To get a directory


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting To get a directory
# 1  
Old 01-12-2010
To get a directory

Hi,

I have a directory tree w.r.t the current directory, as given below
com/temp/fir/file.xml

And above tree will keep changing. How do I get first directory from above tree. That is is "com" directory.

Thanks in advance.
# 2  
Old 01-12-2010
try
Code:
 
$ echo $tree
com/temp/fir/file.xml
 
$ echo  $tree | awk -F"/" '{print $1}'
com

# 3  
Old 01-12-2010
using sed

Code:
$ echo $tree | sed "s|/.*||"
com

# 4  
Old 01-12-2010
Tools

Quote:
Originally Posted by jredx
Hi,

I have a directory tree w.r.t the current directory, as given below
com/temp/fir/file.xml

And above tree will keep changing. How do I get first directory from above tree. That is is "com" directory.

Thanks in advance.
Code:
find . -type d -iname "*com*" -maxdepth 1

Regards.
gaurav.
# 5  
Old 01-12-2010
I was eagerly waiting for this, I needed it.
Thanks a lot guys
# 6  
Old 01-12-2010
Code:
DIR=com/temp/fir/file.xml
DIR1=${DIR%%/*}

# 7  
Old 01-18-2010
com is not a constant

Quote:
Originally Posted by gaurav1086
Code:
find . -type d -iname "*com*" -maxdepth 1

Regards.
gaurav.
Gaurav, "com" is not a constant. next time it may be "george". So I think this solution will not work. But other replies helped me. Thanks anyway.

---------- Post updated at 01:02 AM ---------- Previous update was at 01:01 AM ----------

Quote:
Originally Posted by frans
Code:
DIR=com/temp/fir/file.xml
DIR1=${DIR%%/*}

frans, please explain the %%/* in the code.
Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List files with date, create directory, move to the created directory

Hi all, i have a folder, with tons of files containing as following, on /my/folder/jobs/ some_name_2016-01-17-22-38-58_some name_0_0.zip.done some_name_2016-01-17-22-40-30_some name_0_0.zip.done some_name_2016-01-17-22-48-50_some name_0_0.zip.done and these can be lots of similar files,... (6 Replies)
Discussion started by: charli1
6 Replies

2. AIX

How to set owner and permission for files/directory in directory in this case?

Hi. My example: I have a filesystem /log. Everyday, log files are copied to /log. I'd like to set owner and permission for files and directories in /log like that chown -R log_adm /log/* chmod -R 544 /log/*It's OK, but just at that time. When a new log file or new directory is created in /log,... (8 Replies)
Discussion started by: bobochacha29
8 Replies

3. Shell Programming and Scripting

Shell scripting-I need a script which should watch a directory for a file with specific directory

I need a script which should watch a directory for a file with specific directory. If it finds a file in directory, it should search for few specific keyword in the file. if the keyword exists, it should trim string from specific column. The file should be moved to another directory and the a... (8 Replies)
Discussion started by: akashdeepak
8 Replies

4. UNIX for Dummies Questions & Answers

Extract directory name from the full directory path in UNIX using shell scripting

My input is as below : /splunk/scrubbed/rebate/IFIND.REBTE.WROC.txt /splunk/scrubbed/rebate/IFIND.REBTE.WROC.txt /splunk/scrubbed/loyal/IFIND.HELLO.WROC.txt /splunk/scrubbed/triumph/ifind.triumph.txt From the above input I want to extract the file names only . Basically I want to... (5 Replies)
Discussion started by: IshuGupta
5 Replies

5. Web Development

Directory index forbidden by Options directive error on specific directory with indexing disabled

I am seeing the following error appear numerous times in my Apache error log: I have my Apache config configured as below, so I would expect indexing not to occur on this directory as it falls under the parent /web directory. Strangely all the IP address, including this example, all... (5 Replies)
Discussion started by: crmpicco
5 Replies

6. Shell Programming and Scripting

Catching the xml tag when only parent directory is known ..not the actual directory

Hi folks, I have an query that is let say i have to search in an xml file an tag that is <abcdef> now this xml file is at /opt/usr/local so one fastest way to achieve this is go to this location by cd /opt/usr/local and then do grep like this... grep -i abcdef but for this I must know the... (4 Replies)
Discussion started by: punpun66
4 Replies

7. Shell Programming and Scripting

Change to directory and search some file in that directory in single command

I am trying to do the following task : 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. (2 Replies)
Discussion started by: saurau
2 Replies

8. Shell Programming and Scripting

Grepping file names, comparing them to a directory of files, and moving them into a new directory

got it figured out :) (1 Reply)
Discussion started by: sHockz
1 Replies

9. Solaris

Restricting SFTP user to a defined directory and home directory

Hi, I've created solaris user which has both FTP and SFTP Access. Using the "ftpaccess" configuration file options "guest-root" and "restricted-uid", i can restrict the user to a specific directory. But I'm unable to restrict the user when the user is logged in using SFTP. The aim is to... (1 Reply)
Discussion started by: sftpuser
1 Replies
Login or Register to Ask a Question