How to echo space or tab delimited values into rows?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to echo space or tab delimited values into rows?
# 1  
Old 07-19-2011
How to echo space or tab delimited values into rows?

Hi,

I have the following code:

Code:
LIST=`ls | grep '.sql$'`
echo $LIST

The above code will give me something like..

Code:
file1.sh file2.sh file3.sh file4.sh file5.sh

I want to display the values into rows using echo like...

Code:
file1.sh
file2.sh
file3.sh
file4.sh
file5.sh

If it's not possible with echo, then what other command can I use.

Thanks.
# 2  
Old 07-19-2011
Quoting "$LIST" will preserve the ls output format:

Code:
echo "$LIST"

You could just as easily use ls *.sql, than using grep (except possibly when a very, very large number of files is involved).
This User Gave Thanks to Scott For This Post:
# 3  
Old 07-19-2011
try with below code
Code:
list=`ls *.sh`
echo $list | tr -s '\040' '\012'

Cheers
Harish
This User Gave Thanks to harish612 For This Post:
# 4  
Old 07-19-2011
That really isn't a flexible solution.

Code:
$ touch a.sh b.sh "c d".sh

$ ls -1
a.sh
b.sh
c d.sh

$ list=`ls *.sh`

$ echo $list | tr -s '\040' '\012'
a.sh
b.sh
c
d.sh

# whereas, ...
$ echo "$list"
a.sh
b.sh
c d.sh
# gives the correct output without tr


Last edited by Scott; 07-19-2011 at 07:39 AM.. Reason: Replaced word "good" with "flexible"
# 5  
Old 07-19-2011
I think generally the file names are not space separated
Moreover the reply was in context of the file names mentioned above in the first post
So for that case above will work fine

Cheers
Harish
# 6  
Old 07-19-2011
Never presume mate.

You never know what all those applications and programers will spit out on filesystem.
I have seen terrible things, from not getting the desired solution with your code, to restoring thousands of files from tape cause of bad shell expansion.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Output file with <Tab> or <Space> Delimited

Input file: xyz,pqrs.lmno,NA,NA,NA,NA,NA,NA,NA abcd,pqrs.xyz,NA,NA,NA,NA,NA,NA,NA Expected Output: xyz pqrs.lmno NA NA NA NA NA NA NA abcd pqrs.xyz NA NA NA NA NA NA NA Command Tried so far: awk -F"," 'BEGIN{OFS=" ";} {print}' $File_Path/File_Name.csv Issue:... (5 Replies)
Discussion started by: TechGyaann
5 Replies

2. UNIX for Dummies Questions & Answers

Sort tab delimited file according to which rows have missing values

Hello! I have a tab delimited file with values in three columns. Some values occur in all three columns, other values are present in only one or two columns. I would like to sort the file so that rows with no missing values come first, rows with one missing values come next, and rows with two... (9 Replies)
Discussion started by: MBarrett1213
9 Replies

3. Shell Programming and Scripting

How to convert space&tab delimited file to CSV?

Hello, I have a text file with space and tab (mixed) delimited file and need to convert into CSV. # cat test.txt /dev/rmt/tsmmt32 HP Ultrium 6-SCSI J3LZ 50:03:08:c0:02:72:c0:b5 F00272C0B5 0/0/6/1/1.145.17.255.0.0.0 /dev/rmt/c102t0d0BEST /dev/rmt/tsmmt37 ... (6 Replies)
Discussion started by: prvnrk
6 Replies

4. UNIX for Dummies Questions & Answers

awk - Extract 4 lines in Column to Rows Tab Delimited between tags

I have tried the following to no avail. xargs -n8 < test.txt awk '{if(NR%6!=0){p=""}else{p="\n"};printf $0" "p}' Mod_Alm_log.txt > test.txt I have tried different variations of the above, the problem is mixes lines together. And it includes the tags "%a and %A" I need them to be all tab... (16 Replies)
Discussion started by: mytouchsr
16 Replies

5. Shell Programming and Scripting

How to make tab delimited file to space delimited?

Hi How to make tab delimited file to space delimited? in put file: ABC kgy jkh ghj ash kjl o/p file: ABC kgy jkh ghj ash kjl Use code tags, thanks. (1 Reply)
Discussion started by: jagdishrout
1 Replies

6. UNIX for Dummies Questions & Answers

Changing only the first space to a tab in a space delimited text file

Hi, I have a space delimited text file but I only want to change the first space to a tab and keep the rest of the spaces intact. How do I go about doing that? Thanks! (3 Replies)
Discussion started by: evelibertine
3 Replies

7. UNIX for Dummies Questions & Answers

Extracting rows from a space delimited text file based on the values of a column

I have a space delimited text file. I want to extract rows where the third column has 0 as a value and write those rows into a new space delimited text file. How do I go about doing that? Thanks! (2 Replies)
Discussion started by: evelibertine
2 Replies

8. UNIX for Advanced & Expert Users

merge two tab delimited file with exact same number of rows in unix/linux

Hi I have two tab delimited file with different number of columns but same number of rows. I need to combine these two files in such a way that row 1 in file 2 comes adjacent to row 1 in file 1. For example: The content of file1: field1 field2 field3 a1 a2 a3 b1 b2 b3... (2 Replies)
Discussion started by: mary271
2 Replies

9. Shell Programming and Scripting

So I converted columns to rows but I want it to be tab delimited and also I want.....

Hi, So my file looks like this: title number JR 2 JR 2 JR 4 JR 5 NM 5 NM 8 NM 2 NM 8 I used this line that I wrote to convert it to rows so it will look like this: awk -F"\t" '!/^$/{a=a" "$3} END {for ( i in a) {print i,a}}' occ_output.tab > test.txt JR 2 2 4 5 NM 5 8... (4 Replies)
Discussion started by: kylle345
4 Replies

10. Shell Programming and Scripting

How to echo a <tab> space?

I've tried this: echo "${bold}User${norm} : u"\t"${bold}All Users ${norm} : a\t" and i got this output: Specific User : u\tAll User: a\t (14 Replies)
Discussion started by: laila63
14 Replies
Login or Register to Ask a Question