getting Output of ls command in a file


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers getting Output of ls command in a file
# 1  
Old 08-24-2010
getting Output of ls command in a file

Hi

I am trying to get the output of ls into a file with names seaparated with comma and no spaces.
Here is the content of my dir:

Code:
ls
file1        file2        file3        file4

this is what I tried:

Code:
ls -m > list.txt

the file 'list.txt' looks like:
Code:
file1, file2, file3, file4, list.txt

I want to get rid of the spaces, and also 'list.txt' should not be included.
The 'list.txt' I want should look like:

Code:
file1,file2,file3,file4

Thanks
# 2  
Old 08-24-2010
Code:
perl -lpe 's/ //g;s/,[^,]+$//' list.txt > list2.txt

# 3  
Old 08-24-2010
Code:
printf '%s\n' *|paste -sd,

# 4  
Old 08-24-2010
Code:
# sed 's/ \| [^,]*$//g;s/,$//' list.txt
file1,file2,file3,file4

# 5  
Old 08-25-2010
Quote:
Originally Posted by bartus11
Code:
perl -lpe 's/ //g;s/,[^,]+$//' list.txt > list2.txt

Could you please explain me what the below code does?
Code:
's/,[^,]+$//'

# 6  
Old 08-25-2010
Quote:
Originally Posted by royalibrahim
Could you please explain me what the below code does?
Code:
's/,[^,]+$//'

"[^,]" matches characters that are not ",", so ",[^,]+$" matches last word (or any string of characters) in line, separated from others using ",".
# 7  
Old 08-25-2010
Code:
ls -m | awk '$1=$1' FS=", " OFS="," > list.txt

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Command output redirection to file issues

Hi, I have a peculiar issue w.r.t redirecting the command output to a file when using loop. I am redirecting command output to same file in a series of if condition statements, but if one block of if condition statement writes the log to the file , the subsequent block of if condition... (7 Replies)
Discussion started by: ananan
7 Replies

2. Shell Programming and Scripting

Insert title as output of command to appended file if no output from command

I am using UNIX to create a script on our system. I have setup my commands to append their output to an outage file. However, some of the commands return no output and so I would like something to take their place. What I need The following command is placed at the prompt: TICLI... (4 Replies)
Discussion started by: jbrass
4 Replies

3. Shell Programming and Scripting

Treat Command Output as a File

Hi. Before I've post this question, I have spent hours looking for the solutions but to no avail. Because I think it is possible but I just don't know what is the right keyword to search for. Ok, basically what I want to achieve is really simple. It's just that I don't want to write... (20 Replies)
Discussion started by: aimy
20 Replies

4. Red Hat

Command understanding the output file destination in case of standard output!!!!!

I ran the following command. cat abc.c > abc.c I got message the following message from command cat: cat: abc.c : input file is same as the output file How the command came to know of the destination file name as the command is sending output to standard file. (3 Replies)
Discussion started by: ravisingh
3 Replies

5. UNIX for Dummies Questions & Answers

taking the output of awk command to a new file

cat doc | nawk -v da="${date}" '$23>199 {print $0 > "doc"+da+".txt"}' Every time(need to run every day) i run this, i want to a create a new file "doc_01 Aug.txt". Basically, i want to create a new file with date appended in it. The above command is creating a file with name "0".... (4 Replies)
Discussion started by: vagar11
4 Replies

6. Shell Programming and Scripting

to take the output of a command to a file

hi , i am using iostat -nmzx 1 | awk '{ print $4 }' command to get the i/o rates of disks. but i want command output in a file , how can i capture , this is some what difficult because command output is keep on changing , any way i have to get total output of the command . please help me .... (1 Reply)
Discussion started by: shankr3
1 Replies

7. Shell Programming and Scripting

Help me to command to output file format.

Dear Master. Help me to command to out put. Ex log. "<?xml version=""1.0"" encoding=""UTF-10"" ?><anova-test-bom> <txid>17251032659</txid> <authentication> <user>admin</user> <password>Amrduoi</password> </authentication> <destination> <msisdn>1111111</msisdn> ... (2 Replies)
Discussion started by: ooilinlove
2 Replies

8. Shell Programming and Scripting

Redirecting output of a command to a file

Hi We are having a requirement where one shell script, say a.sh (which uses Java and connects to Oracle database using JDBC) keeps on running everytime. I created a wrapper (to check whether a.sh is running and if not then to start it) and scheduled it in the crontab. Now all the output from... (3 Replies)
Discussion started by: ankitgoel
3 Replies

9. UNIX for Dummies Questions & Answers

Command display output on console and simultaneously save the command and its output

Hi folks, Please advise which command/command line shall I run; 1) to display the command and its output on console 2) simultaneous to save the command and its output on a file I tried tee command as follows; $ ps aux | grep mysql | tee /path/to/output.txt It displayed the... (7 Replies)
Discussion started by: satimis
7 Replies

10. UNIX for Dummies Questions & Answers

Output of command to 2 separate file?

How would I echo the same results to two files? One is a running log, and the other is a cache, or sort. echo "Hello World" >> /Logs/File1 & /tmp/file2 I would just copy it from one place to the other, but the Log keeps history, where I want the /tmp to hold only stuff per session. I tried... (2 Replies)
Discussion started by: TheCrunge
2 Replies
Login or Register to Ask a Question