How to get the list regular files in a given directory?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to get the list regular files in a given directory?
# 1  
Old 05-20-2012
Produces the application specified command to all regular files in a given 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:

write a script in language shell bash, which produces the application specified command to all regular files in a given directory (and all subdirectories)

Input parameters:

- Defined directory;

- Given command.


2. Relevant commands, code, scripts, algorithms:



3. The attempts at a solution (include all code and scripts):
this is my solution, but i'm not sure that it's true?

Code:
#!/bin/bash
echo ' '

if [ "$1" = "" ]
  then echo 'insert your directory, please'
else 
  if [ "$2" = "" ] 
     then echo 'insert your command, please'
  else
     find $1 -type f | xargs $2
  fi
fi

4. Complete Name of School (University), City (State), Country, Name of Professor, and Course Number (Link to Course):
DaNang university, Danang city, VietNam, Nguyễn Văn Chiến, 09T3 http://www.dananguni.edu.vn/
Note: Without school/professor/course information, you will be banned if you post here! You must complete the entire template (not just parts of it).

---------- Post updated at 07:21 AM ---------- Previous update was at 06:55 AM ----------

this scripts just apply this command for this directory, not for all regular files inside directory. I think that it's needed to use "loop"...
# 2  
Old 05-20-2012
How to get the list regular files in a given directory?

I know that ls -l command will print all information of the files in current directory,but i only want to get the list name of the files (by line).
I try that:
Code:
ls -l | cut -f 9 -d ' '

but, in many cases, it's wrongSmilie

Last edited by numeracy; 05-20-2012 at 10:17 AM..
# 3  
Old 05-20-2012
Code:
find . -type f

This User Gave Thanks to bartus11 For This Post:
# 4  
Old 05-20-2012
Quote:
Originally Posted by bartus11
Code:
find . -type f

but this command does not show the name of subdirectorySmilie(
Code:
 find . -type d

this include the main directory

Moderator's Comments:
Mod Comment duplicate thread merged back into homework. Numeracy note: stop bypassing our rules

Last edited by jim mcnamara; 05-20-2012 at 01:09 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 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. Shell Programming and Scripting

Copy list of files from a keyword list to another directory

Hello, I have a folder with a massive amount of files, and I want to copy out a specific subset of the files to a new directory. I would like to use a text file with the filenames listed, but can't get it to work. The thing I'm hung up on is that the folder names in the path can and do have... (5 Replies)
Discussion started by: twjolson
5 Replies

3. Homework & Coursework Questions

Produces the application specified command to all regular files in a given directory

1. The problem statement, all variables and given/known data: write a script in language shell bash, which produces the application specified command to all regular files in a given directory (and all subdirectories) Input parameters: - Defined directory; - Given command. 2.... (1 Reply)
Discussion started by: numeracy
1 Replies

4. Shell Programming and Scripting

Produces the application specified command to all regular files in a given directory

write a script in language shell bash, which produces the application specified command to all regular files in a given directory (and all subdirectories) Input parameters: - Defined directory; - Given command. this is my answer, but i'm not sure that it's true? #!/bin/bash echo '... (1 Reply)
Discussion started by: numeracy
1 Replies

5. Shell Programming and Scripting

List files in a directory

Hi Experts, I need to list the files in a directory which have more than one lines Please help Thanks (1 Reply)
Discussion started by: gwrm
1 Replies

6. Shell Programming and Scripting

How to apply a regular expression in all the files in a directory

I have say 100 text files (with .txt extension) in a directory. An example of the content in the file is given below "NAME" "cgd1_200" "cgd1_3210" "cgd1_560" "cgd2_2760" "cgd2_290" "cgd3_3210" "cgd3_3310" "cgd3_660" "cgd5_2130" "cgd5_4080" "cgd6_3690" "cgd6_4480" "cgd8_1540"... (2 Replies)
Discussion started by: Lucky Ali
2 Replies

7. Shell Programming and Scripting

find list of files from a list and copy to a directory

I will be very grateful if someone can help me with bash shell script that does the following: I have a list of filenames: A01_155716 A05_155780 A07_155812 A09_155844 A11_155876 that are kept in different sub directories within my current directory. I want to find these files and copy... (3 Replies)
Discussion started by: manishabh
3 Replies

8. Homework & Coursework Questions

List Files and Directory

Use and complete the template provided. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data i need to list all files in date/time order that contain the word "alpha" but not the the word "beta". 2. Relevant equations find or ls ... (7 Replies)
Discussion started by: jeht
7 Replies

9. UNIX for Dummies Questions & Answers

Find files and display only directory list containing those files

I have a directory (and many sub dirs beneath) on AIX system, containing thousands of file. I'm looking to get a list of all directory containing "*.pdf" file. I know basic syntax of find command, but it gives me list of all pdf files, which numbers in thousands. All I need to know is, which... (4 Replies)
Discussion started by: r7p
4 Replies

10. UNIX for Dummies Questions & Answers

cp list of files into another directory

Hi All, i am trying to copy files from a directory to another. here is what I am doing ls -ltr INTER* THE output is list of 80 files. i have to copy all these 80 files into another directory ( say /home/pavi/folder) at a time. can anyone please suggest me how do I do it. thanks pavi (4 Replies)
Discussion started by: pavan_test
4 Replies
Login or Register to Ask a Question