appending


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting appending
# 1  
Old 07-10-2007
appending

hi,

a1.txt
------

xyz zxc

xya xdf


a2.txt
------

a1 a2

b1 b2



cat a1.txt >> a2.txt -->its appending at the end



xyz zxc

xya xdf

a1 a2

b1 b2


I need to add at the beging of the file a2.txt.Is there any command
to do it?

Thanks inadvance
Mohan
# 2  
Old 07-10-2007
not directly,

cat a1.txt a2.txt > a3.txt
# 3  
Old 07-10-2007
Hi,

Try the following

cat a2.txt >> a1.txt

Thanks,
Shahnaz.
# 4  
Old 07-10-2007
You can also play with the ed command :
Code:
echo "0r a1.txt\nw\nq" | ed -s a2.txt

Jean-Pierre.
# 5  
Old 07-10-2007
Hi
Thanks,its working .Can you expain this

echo "0r a1.txt\nw\nq" | ed -s a2.txt


Thanks inadvance
Mohan
# 6  
Old 07-11-2007
ed -s a2.txt
Edit (by line) file a2.txt, -s suppresses character counts that the editor displays.
Commands are read from stdin (output of echo command)
echo "0r a1.txt\nw\nq"
Gives commands to ed
0r a1.txt Insert file a1.txt before first line of file.
w Write file (a2.txt)
q Quit editor


Jean-Pierre.
# 7  
Old 07-11-2007
Hi,

Thanks for your explinations

Thanks and Regards,
Mohan
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Matching and appending

I have two files FILEA a/b/c/d e/f/g/h i/j/k/l m/n/o/p FILEB i/j/k/l i want that if lines of FILEB matches lines of FILEA then matching lines in FILEA to be appended by word "MATCH" NEW FILEA a/b/c/d e/f/g/h i/j/k/l "MATCH" m/n/o/p I have tried following script .but not... (6 Replies)
Discussion started by: shaan4uster
6 Replies

2. Shell Programming and Scripting

Appending value to variable

I have a Query! by using command cat >> file1 we can append data's to a already existing file, Similarly is it possible to append a data to a variable. Thanks in Advance!! (2 Replies)
Discussion started by: gwgreen1
2 Replies

3. UNIX for Dummies Questions & Answers

Appending error

Hi All, I just want to append the value in variable at the end of the file. var=1234 sed -e "$a $var" file1 > file 2. But I get this error sed: -e expression #1, char 4: unknown command: `1' Kindly let m know how can I do that... (5 Replies)
Discussion started by: waqar1
5 Replies

4. Shell Programming and Scripting

appending two strings

Hi, I have a small doubt. Here is the code snippet for which the output that I'm getting are a bit surprising. testing.sh #!/bin/sh arg_1=$1 echo "arg passed by user is:${arg_1}" mapping=`grep ${arg_1}= testing.conf | awk -F"=" '{print $2}'` echo "mapping is $mapping"... (4 Replies)
Discussion started by: badrimohanty
4 Replies

5. Shell Programming and Scripting

Appending variables

Hi, I'm having a problem with something I can't really figure out by myself. I've tried to do it with a for loop, but I'm pretty sure it won't work, if I'm not mistaken. Basically, what I'm trying to do is test some variables and if any of them is not empty, add the values of these variables... (5 Replies)
Discussion started by: mutex1
5 Replies

6. Shell Programming and Scripting

Appending date

hi All, Searched forum but couldn't find a solution to this problem: How can I append a file with date in the ninth line? ie I want to insert a line with the current date and time in the ninth line. I tried this: date=`date` awk 'NR==9 {printf "'$date' \n"} {print $0}' abc.log below... (10 Replies)
Discussion started by: Sreejith_VK
10 Replies

7. Shell Programming and Scripting

appending with AWK

Hi all, I have two files called INPUT1 and INPUT2 and i am trying to append the values of INPUT1 to INPUT2 using AWK. The INPUT1 file will always has a single field and the INPUT2 file has 3 fields but both files will have same number of records always. Following is the format of the... (5 Replies)
Discussion started by: harris2107
5 Replies

8. Shell Programming and Scripting

Appending to a variable?

Hey, I'm creating a custom useradd script, and I'm giving the option to add secondary groups. Basically what I want to do is ask for the name of the group, you type in the group you want to add, it assigns that group name to the variable $sgroup. Then the scripts asks if you want add another. If... (0 Replies)
Discussion started by: paqman
0 Replies

9. Shell Programming and Scripting

appending

i've been fiddling around with append and I know how to append a word into a file, but how would you go about appending a word to a filename? (5 Replies)
Discussion started by: codewarrior7
5 Replies

10. UNIX for Dummies Questions & Answers

Appending out to a file

Hi, once again - Ok here it is: a).I used the touch command to create a file (touch directory.list) b).I then added this line: - date '+The date is %a %h %d, %Y %nIt is %I:%M %p' > directory.list -So that this date function would go at the top of my script c).Now I want to display a... (1 Reply)
Discussion started by: Astudent
1 Replies
Login or Register to Ask a Question