easy question


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers easy question
# 8  
Old 10-19-2007
man paste

(message too short)
# 9  
Old 10-19-2007
Using man paste, I have only the option to use:

Code:
paste -d "\t" name_*.dat > final_file.dat

But when I use it the fina_final.dat is empty.
I guess that using the option -d I can decalre the delimiter:

Code:
$man paste

 -d, --delimiters=LIST
              reuse characters from LIST instead of TABs

So I have declared it such tabulation, but does not work. Smilie

Thanks in advance again.Smilie
tonet
# 10  
Old 10-19-2007
Code:
paste <(for f in name{1..30}.dat;do [ -f "$f" ]&&printf "%s" "$f";done)

# 11  
Old 10-19-2007
thanks again.I tried to do this but I do not know how create this new file. I guess it should be:

Code:
paste <(for f in name{1..30}.dat;do [ -f "$f" ]&&printf "%s" "$f";done) > final_file.dat

But it does not work. Best regards Smilie
tonet
# 12  
Old 10-19-2007
Do you want an output like this:

Code:
$ for i in $(seq 2 3 14);do echo col$i>name$i.dat;done
$ ls
name11.dat  name14.dat  name2.dat  name5.dat  name8.dat
$ cat name*
col11
col14
col2
col5
col8
$ { for f in name{1..15}.dat;do [ -f "$f" ]&&printf "%s " "$(<$f)";done;printf "\n";}>final_file.dat
$ cat final_file.dat 
col2 col5 col8 col11 col14


Last edited by radoulov; 10-19-2007 at 08:05 AM.. Reason: corrected
# 13  
Old 10-19-2007
Yes Radoulov.
I tried but only paste the name of files, and I would like the content.
Then I guess that I do not explain correctly. Each file it has one column, like:

Code:
2.378E-04
1.020E-03
1.287E-03
1.643E-03
1.285E-03
1.073E-03
1.473E-03
2.994E-03
2.090E-03
1.884E-03
....
....

for example this is the namefile_1.dat. Then I would like to create a final file which it has all the columns for each file, and ordered by number.
Smilie
tonet
# 14  
Old 10-19-2007
...

with bash, sort and paste:

Code:
$ cat name1.dat 
2.378E-01
1.020E-01
1.287E-01
1.643E-01
1.285E-01
1.073E-01
1.473E-01
2.994E-01
2.090E-01
1.884E-01
$ cat name2.dat
2.378E-02
1.020E-02
1.287E-02
1.643E-02
1.285E-02
1.073E-02
1.473E-02
2.994E-02
2.090E-02
1.884E-02
$ cat name12.dat
2.378E-12
1.020E-12
1.287E-12
1.643E-12
1.285E-12
1.073E-12
1.473E-12
2.994E-12
2.090E-12
1.884E-12
$ set -- $(printf "%s\n" name*|sort -k1.5n)
$ paste "$@">namefile_1.dat
$ cat namefile_1.dat 
2.378E-01       2.378E-02       2.378E-12
1.020E-01       1.020E-02       1.020E-12
1.287E-01       1.287E-02       1.287E-12
1.643E-01       1.643E-02       1.643E-12
1.285E-01       1.285E-02       1.285E-12
1.073E-01       1.073E-02       1.073E-12
1.473E-01       1.473E-02       1.473E-12
2.994E-01       2.994E-02       2.994E-12
2.090E-01       2.090E-02       2.090E-12
1.884E-01       1.884E-02       1.884E-12


Without sort:
Code:
$ set -- $(for f in name{1..12}.dat;do [ -f "$f" ]&&printf "%s\n" "$f";done) 
$ paste "$@"
2.378E-01       2.378E-02       2.378E-12
1.020E-01       1.020E-02       1.020E-12
1.287E-01       1.287E-02       1.287E-12
1.643E-01       1.643E-02       1.643E-12
1.285E-01       1.285E-02       1.285E-12
1.073E-01       1.073E-02       1.073E-12
1.473E-01       1.473E-02       1.473E-12
2.994E-01       2.994E-02       2.994E-12
2.090E-01       2.090E-02       2.090E-12
1.884E-01       1.884E-02       1.884E-12


Last edited by radoulov; 10-19-2007 at 08:33 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Easy seq Question

Hi! I'm trying to do this: 1 - 2 - 3 - 4 - 5 - I'm using seq for this: seq 1 20 > filename.txt How do I get the "-"? I've tried -f per man but can't get anything to work. Also, is there an easier or better way than using sequence? Thanks! (6 Replies)
Discussion started by: TonyBe
6 Replies

2. Shell Programming and Scripting

Easy VI Question (I hope)

Hi, I've FTPed some text files from windows to my Linux workstation. I'm finding that the characters for quotes (") have been replaced with control characters <93> and <94>. and apostrophes (') have been replaced with what looks like control character <92>. I have attempted the following... (15 Replies)
Discussion started by: larryjmoon
15 Replies

3. Shell Programming and Scripting

easy grep question

pattern matching porblem. I have a file with lines like this: hdisk2 blah 03 hdisk3 blah 03 hdisk21 blat 06 hdisk23 blah 06 hdisk210 blat 06 So I want to grep for just hdisk2, but I get back as you would expect hdisk2 dhsik21 hdisk23 hdisk210 I tried several... (1 Reply)
Discussion started by: adder2
1 Replies

4. Shell Programming and Scripting

Newbie with an easy question

I'm looking to write a script that takes a certain directory and gzips all its files that are older than 2 days. I've done some research but for the life of me, I can't even get any files gzipped. Any help would be greatly appreciated! (3 Replies)
Discussion started by: adrockrocks
3 Replies

5. Shell Programming and Scripting

Hopefully an Easy Question

I have a file name in this format ABC_WIRE_TRANS_YYYYMMDD_00.DAT I need to cut out the _00 out of the file name everytime. It could be _00, _01,_02, etc .... How do I cut it out to look as follows? ABC_WIRE_TRANS_YYYYMMDD.DAT (6 Replies)
Discussion started by: lesstjm
6 Replies

6. UNIX for Dummies Questions & Answers

easy unix question

I am trying to check through all of a certain type of file in all main directories, and find the top 10 that are taking up the most space. How can I do that? I was thinking like du *.file | sort -n | head (1 Reply)
Discussion started by: wallacer
1 Replies

7. Shell Programming and Scripting

A easy question.

this is the simple question, please help me! the question is: how to send exactly 50 ICMP Echo request packets with 500 bytes of payload to 202.139.129.221? I tried to use ping -F 500 202.139.129.221, but it didn't work. Thanks! (6 Replies)
Discussion started by: kikikaka
6 Replies

8. UNIX for Dummies Questions & Answers

Another easy question

Hello Again, Ok guys. Thanks again for your help last time but I am in need of your experience again. I wrote this script: #!/bin/sh # List either files or directories in individual accounts # using 1, 2 or 3 with invalid case $1 in echo select 1 to see the FILES in your... (3 Replies)
Discussion started by: catbad
3 Replies

9. UNIX for Dummies Questions & Answers

easy question

I know the Sun Solaries versions are ( 2.3 , 2.4 , 2.5 ... 7 , 8 ) . But some times I see sun os v5.x what does it mean ?? also what is the last new machine for sun and what are its details specifications . Thanks (3 Replies)
Discussion started by: tamemi
3 Replies

10. UNIX for Dummies Questions & Answers

Easy question

Hi, Simple question. How do I convert a unix text file to a dos text file? Thanks Helen (4 Replies)
Discussion started by: Bab00shka
4 Replies
Login or Register to Ask a Question