![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| ksh scripting help | praveenbvarrier | Shell Programming and Scripting | 1 | 04-15-2008 07:19 AM |
| sql scripting help | sam786 | Shell Programming and Scripting | 3 | 12-10-2007 09:31 AM |
| difference between AIX shell scripting and Unix shell scripting. | haroonec | Shell Programming and Scripting | 2 | 04-12-2006 05:12 AM |
| scripting guru's pls help me with scripting on AIX | thatiprashant | Shell Programming and Scripting | 1 | 01-20-2006 04:58 PM |
| Scripting? | woofie | What's on Your Mind? | 1 | 03-09-2005 04:03 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Scripting Help
Hello all.
Like Ive stated before, I am new to world of Unix. I was given the tast to create a script that will concatenate 20 files into one file. I know that the cat command is to be used but I am looking for something to get started on. Again, basically I need to wrtie a script that whill concatenate 20 files into one file that holds all the 20 files. Thanks! |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
Code:
> bigfile
for i in file1 file2 file3 file4 file5 file6 file7 file8 file9 file10 \
file11 file12 file13 file14 file15 file16 file17 file18 file19 file20
do
cat $file >> bigfile
done
|
|
#3
|
||||
|
||||
|
Code:
cat file1 file2 file3 file4 file5 file6 file7 file8 file9 file10 \
file11 file12 file13 file14 file15 file16 file17 file18 file19 file20 > bigfile
|
|
#4
|
|||
|
|||
|
Thanks again guys, I got it!
|
|||
| Google The UNIX and Linux Forums |