Appending newline character End of File


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Appending newline character End of File
# 8  
Old 12-30-2013
Another version using a variable:-
Code:
#!/bin/bash --posix
echo "Your example string..."
text=$(printf "1|Main|Test|~#
2|Main|Hello|~#
3|Main|Unix|~#
4|Main|File|~#")
printf "$text"
echo "Now add a newline at the end..."
text="$text"'\n'
printf "$text"

Results:-
Code:
Last login: Mon Dec 30 18:45:09 on ttys000
AMIGA:barrywalker~> chmod 755 add_nl1.sh
AMIGA:barrywalker~> ./add_nl1.sh
Your example string...
1|Main|Test|~#
2|Main|Hello|~#
3|Main|Unix|~#
4|Main|File|~#Now add a newline at the end...
1|Main|Test|~#
2|Main|Hello|~#
3|Main|Unix|~#
4|Main|File|~#
AMIGA:barrywalker~> _

# 9  
Old 12-30-2013
Quote:
POSTED by Gouri:
Hi Ravinder,

When I used the code, it is working fine for only 4 lines. If I add additional line it is not working. The number of lines in the file could be anything. Which we don't know until the file is generated.

Thank you.
Hello Gouri,

May be following can help.


Code:
a=`awk 'END {print NR}' add_new_line_char1`; awk -vs1="$a" 'NR==s1 {print $0"\\n"} !/^4/' add_new_line_char1

So by this we can save how many number of lines are there in file then we can append the new line character as per your requirement.



Thanks,
R. Singh
# 10  
Old 12-30-2013
Here's a Perl version tested on a file with well over 2000 lines:

Code:
perl -ne 'print "$_\n" if eof' file

# 11  
Old 12-30-2013
To add a newline at the end of the file:
Code:
xargs -d\n < file

# 12  
Old 01-05-2014
There seem to have been a lot of complex possibilities presented in this thread. Why not use something much simpler, for example:
Code:
echo >> file

# 13  
Old 01-06-2014
Thank you Gurus. Was able to achieve this functionality, appending \n to the end of file using Informatica.

Thank you again.
# 14  
Old 01-06-2014
The following will add a \n only if missing:
Code:
perl -lpe "" file

Write this back to the file with:
Code:
perl -i -lpe "" file

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to remove newline character if it is the only character in the entire file.?

I have a file which comes every day and the file data look's as below. Vi abc.txt a|b|c|d\n a|g|h|j\n Some times we receive the file with only a new line character in the file like vi abc.txt \n (8 Replies)
Discussion started by: rak Kundra
8 Replies

2. Shell Programming and Scripting

No newline at end of file

Hello all, I have maybe a simple Problem - but I do not know to handle it. All what I want, is to write a line to file without a newline at the end. It works with "echo -n" for all lines, but not for the last one. At the end of the file is always a "0a" (hex) My small script: ... (10 Replies)
Discussion started by: API
10 Replies

3. Shell Programming and Scripting

Warning while sorting : A newline character was added to the end of file

Hi, I am trying to sort a csv file which has say 10 lines each line having a row size that is upto 30183 no. of COLUMNS (Row length = 30183). There is a LINE FEED (LF) at the end of each line. When I try to sort this file say, based on the second FIELD using the below command, sort -t ',' +1... (5 Replies)
Discussion started by: DHeisenberg
5 Replies

4. Shell Programming and Scripting

How to add newline character at end of file?

Hi All, I have following piece of code in UNIX C Shell script and I want to add one more command which can add newline at the end of file only if there is no newline character exists. foreach file (`ls $dd_PLAYCARD_EDI_IN`) if ( -f $dd_PLAYCARD_EDI_IN/${file} ) then cat -n... (4 Replies)
Discussion started by: jnrohit2k
4 Replies

5. Shell Programming and Scripting

Appending a new field at the end in a file

can anyone tell me please ......how to append a new field at the end of a file with the help of sed or some other command in bourne shell (8 Replies)
Discussion started by: amitpta
8 Replies

6. Shell Programming and Scripting

Appending string at the end of the file

Hello, I wanted to append 'XYZ' at the end of the text file. How can i do this? I searched the forums and i am not getting what i want. Any help is highly appreciated. Thanks (2 Replies)
Discussion started by: govindts
2 Replies

7. Shell Programming and Scripting

appending date at the end of the file

I have file called xx Now i want to rename this file as xxYYYYMMDD_HHMIAM.xls Here is my code.. export DATE1=`date +%Y%m%d` mv xx xx$DATE1 This code renames as xxYYYYMMDD Now how can i append HHMIAM at the end of the file? Any help is appreciated... (3 Replies)
Discussion started by: govindts
3 Replies

8. Shell Programming and Scripting

To remove the newline character while appending into a file

Hi All, We append the output of a file's size in a file. But a newline character is appended after the variable. Pls help how to clear this. filesize=`ls -l test.txt | awk `{print $5}'` echo File size of test.txt is $filesize bytes >> logfile.txt The output we got is, File size of... (4 Replies)
Discussion started by: amio
4 Replies

9. Shell Programming and Scripting

How to remove a newline character at the end of filename

Hi All, I have named a file with current date,time and year as follows: month=`date | awk '{print $2}'` date=`date | awk '{print $3}'` year=`date | awk '{print $6}'` time=`date +%Hh_%Mm_%Ss'` filename="test_"$month"_"$date"_"$year"_"$time".txt" > $filename The file is created with a... (2 Replies)
Discussion started by: amio
2 Replies

10. Shell Programming and Scripting

Append newline at the file end

Hi All, Is there any way to append a newline character at the end of a file(coma-separated file), through shell script? I need to check whether newline character exists at the end of a file, if it does not then append it. Regards, Krishna (1 Reply)
Discussion started by: KrishnaSaran
1 Replies
Login or Register to Ask a Question