Append the file in UNIX


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Append the file in UNIX
# 1  
Old 07-17-2008
Append the file in UNIX

Hello All,

Could you please provide the solution to my following query
I have some files in my directory. I need to amend the total number of
lines to be added in the starting
line of each file.

For example, please refer the content of the file "file.dat" below.

\h:\w #> cat file.dat
hai
hello
end
Nice day
\h:\w #>

After your command, the output should be below.

\h:\w #> cat file.dat
Total no. of lines: 4
hai
hello
end
Nice day
\h:\w #>

We can do this in sed and awk through a single command. But we will
avoid the sed and awk stuff's for some time.
and can just try using simple unix commands for now.

Regards,
Sandeep
# 2  
Old 07-17-2008
This is homework. Please do not post homework.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

UNIX script to append multiple text files into one file based on pattern present in filaname

Hi All-I am new to Unix , I need to write a script. Can someone help me with a requirement where I have list of files in a directory, I want to Merge the files if a pattern of string matches in filenames? AAAL_555A_ORANGE1_F190404.TXT AAAL_555A_ORANGE2_F190404.TXT AAAL_555A_ORANGE3_F190404.TXT... (6 Replies)
Discussion started by: Shankar455
6 Replies

2. Shell Programming and Scripting

Append your messaage in UNIX command

Hi All, I am executing this command to capture all the outputs from Error_*.txt files to all.txt file as a single output. head -n -5 Error_*.txt > all.txt It gives me the output in all.txt as: ==> ErrorLog_batchSearch.txt <== 2014-03-09 17:07:28,193 ERROR Cannot parse property value... (6 Replies)
Discussion started by: ankur328
6 Replies

3. Shell Programming and Scripting

UNIX compare, sort lines and append difference

Hi, I have a file that needs to be converted: content is: a, b, 4 a ,b, 5 x, y, 1 a, b, 1 x, y, 3 how can i get: a, b, 1|4|5 x,y 1|3 (1 Reply)
Discussion started by: nike27
1 Replies

4. Shell Programming and Scripting

i writing a unix script but i want to out put a file and append on it.

i have an existing script that is used to send an e-mail containing the alrams that appear on the server. But i need to create a daily log file containing all the alarms that was send that day. i tired to add at the and of the script a command, echo command but for some reason the file was... (1 Reply)
Discussion started by: ashraf_victory
1 Replies

5. Shell Programming and Scripting

How to search and append words in the same file using unix scripting file operations

Hi , I have a file myhost.txt which contains below, 127.0.0.1 localhost 1.17.1.5 atrpx958 11.17.10.11 atrpx958zone nsybhost I need to append words only after "atrpx958" like 'myhost' and 'libhost' and not after atrpx958zone. How to search the word atrpx958(which is hostname) only,... (5 Replies)
Discussion started by: gsreeni
5 Replies

6. Shell Programming and Scripting

Need to append the last line of a file on UNIX Box

Dear Friends, I would like to apend the last line of one file on my UNIX box. Please let me know if you have any suggetsion for this. E.g: I have a file ABC as below Required Help Rajesh Amathi | | Thanks in advance. Result: I would like the get the output i.e. file ABC should... (9 Replies)
Discussion started by: rajeshamathi
9 Replies

7. Shell Programming and Scripting

Unix Script file to Append Characters before rows in file.

Hi Experts, I am working on HP-UX. I am new to shell scripting. I would like to have a shell script which will prefix: 1. "H|" before first row of my file and, 2. "T" for all other rows of the file. For Example - File before running the script 20100430|4123451810|218.50|TC 20100430 ... (4 Replies)
Discussion started by: phani333
4 Replies

8. Shell Programming and Scripting

Truncate and Append in unix shell scripting

Hi All, I have a long log file (abc.log) which contains large volume of data that need to be inserted into the database as clob. I am having problem in inserting the long log file into the clob field if the cahracters in the file exceeds. So iwould like to truncate the file upto 32767... (3 Replies)
Discussion started by: rajeshorpu
3 Replies

9. UNIX for Dummies Questions & Answers

Append line and variable at fixed postion in file in unix

Hi I have a input file ::: 1583904589034853904 1690234849023849023 159823890238409 1690238490238490238490 . . . The output file should have the record 16 appended to the record 15 and a variable should be added at a FIXED POSTION at 55. The records are been processed inside a loop... (3 Replies)
Discussion started by: akashhello
3 Replies

10. Shell Programming and Scripting

Is there any way to append pdf files in UNIX?

Is there any way to append pdf files in UNIX? I have a apllication which creates pdf files. Now i want to append them so that it gives me one pdf file. Is this possible? (2 Replies)
Discussion started by: cp7800
2 Replies
Login or Register to Ask a Question