Listing files in a non-parent directory


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Listing files in a non-parent directory
# 1  
Old 01-13-2010
Question Listing files in a non-parent directory

Hi,

Edit: The title should really read listing files in a non-parent directory, sorry!

Im trying to get one of my Bash scripting assignments done for uni and now I'm stuck. This is probably going to be one of those kick yourself moments but, in my script I have a variable usrDir which contains the home directory of a specified user extracted from /etc/passwd file. How can I list the files contained within that directory?

In laymans terms I want to do this...
Code:
ls -a $usrDir

Any help would be greatly appreciated.

Thanks,
Adzi

Last edited by Adzi; 01-13-2010 at 08:19 PM.. Reason: Updating title!
# 2  
Old 01-13-2010
Code:
ls -a $usrDir

would normally be OK.

If the directory is a symbolic link, then:
Code:
ls -La $usrDir

would suffice.

Note: Normally questions relating to homework should be asked in the appropriate forum. As an "ls" question should never constitute an "assignment", it's okay this time.
# 3  
Old 01-13-2010
I kept trying it and trying it and in my sleep deprived state I realised it was commented out... oopsy :$

Many Thanks,
Adzi
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Listing files with their parent dir?

Hi and good day, This string lets me find the html files: ls -R /Volumes/LC3/Sites/chu | grep "html" But how to list the files with their parent dir 'attached' to them: For example: n/fofo.html n/siso.html m/… / Any assistance would be greatly appreciated! With best regards,... (5 Replies)
Discussion started by: OmarKN
5 Replies

2. Shell Programming and Scripting

Copying files from parent directory only

Hello, Please can someone assist on a issue I am having. I want to find specific files in the parent directory only that have been modified over the last 2 days and copy them to another location. NOTE: The version of AIX I am using does not have MAXDEPTH. I have currently written the... (3 Replies)
Discussion started by: Dolph
3 Replies

3. Homework & Coursework Questions

Listing the files in a directory

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: A script that takes any number of directories as command line arguments and then lists the contents of each of... (3 Replies)
Discussion started by: Phaneendra G
3 Replies

4. Shell Programming and Scripting

Help on Backing up all the files in the subdirectories under a parent directory

Hi, I am not too familiar with Unix scripting but I have to write code to find all the files under all the sub directories under a parent directory of unix location and move them to the corresponding Windows location. For eg: I have \home\sreenu\Files\ Under neath this I have multiple sub... (3 Replies)
Discussion started by: raj.sreenu
3 Replies

5. Shell Programming and Scripting

How to list all Subdirectories and files with its full path in a parent directory?

How to list all Subdirectories and files with its full path in a parent directory? (1 Reply)
Discussion started by: johnveslin
1 Replies

6. Shell Programming and Scripting

Reading in all files from parent directory (GAWK)

Hi all, I'm very, very new to scripting (let alone SHELL) and was wondering if anyone could help me out as I seem to be in a spot of bother. I collect data (.dat files) which are automatically seperated into several sub directories, so the file paths I'm reading in at the moment would be... (11 Replies)
Discussion started by: gd9629
11 Replies

7. Shell Programming and Scripting

Help with listing given files in a given directory path

hello every one, i'm a novice in the field of Linux, so please help me out with this problem. a text file with the following syntax is given: file1 file2 file3 file4 file5 a script is to be written to list all d file names and tar the files with the filename... (3 Replies)
Discussion started by: Amruthesh C
3 Replies

8. Shell Programming and Scripting

Find files inside the parent directory only

Hi All, The following find command lists the files which are 45 minutes older. But it searches for the sub directories also. $ find . -type f -mmin +45 -print ./hello.txt ./test/hi.txt ./temp/now.txt ls hello.txt test temp How can i modify the find command in such way that it finds... (4 Replies)
Discussion started by: Tuxidow
4 Replies

9. Shell Programming and Scripting

Listing files in a given directory with given extention

for some reason my code does not give the right number of files. can omeone help me please? (2 Replies)
Discussion started by: andrew1400
2 Replies

10. UNIX for Dummies Questions & Answers

Recursive directory listing without listing files

Does any one know how to get a recursive directory listing in long format (showing owner, group, permission etc) without listing the files contained in the directories. The following command also shows the files but I only want to see the directories. ls -lrtR * (4 Replies)
Discussion started by: psingh
4 Replies
Login or Register to Ask a Question