Scripting for PuttyCM (NewLine Character)


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Scripting for PuttyCM (NewLine Character)
# 1  
Old 05-03-2013
Scripting for PuttyCM (NewLine Character)

Hi,
I am trying to edit a script to create an XML file to upload into PuttyCM. Everything works with the exception of the NewLine character. By default this option is set to Line feed (LF). I need it to be set to NewLine (CR/LF)
Code:
			  <options>
				   <loginmacro>True</loginmacro>
				   <postcommands>True</postcommands>
				   <endlinechar>10</endlinechar>
			  </options>

This is currently the code that I have. Does anyone know what needs to be changed?

Last edited by Franklin52; 05-03-2013 at 10:04 AM.. Reason: Please use code tags for data and code samples
# 2  
Old 05-03-2013
One way:
Code:
awk '{printf("%s\r\n",$0)}' file > newfile

# 3  
Old 05-03-2013
Replacing the

<endlinechar>10</endlinechar>

With

<options>
<loginmacro>True</loginmacro>
<postcommands>True</postcommands>
awk '{printf("%s\r\n",$0)}' file > newfile
</options>

That did not work. Did you mean something else?
# 4  
Old 05-03-2013
Quote:
Originally Posted by Jett44
Replacing the

<endlinechar>10</endlinechar>

With

<options>
<loginmacro>True</loginmacro>
<postcommands>True</postcommands>
awk '{printf("%s\r\n",$0)}' file > newfile
</options>

That did not work. Did you mean something else?
What should be the desired output?
# 5  
Old 05-03-2013
Currently the code does not hit the new line character after the username and password are entered, so everything is entered on the same line. Looking into this, I figured it was possible because the value 10 in the endline segment selects (LF) Line feed.

Code:
			<login>
				    <login>fakelogin</login>
				    <password>fakepassword</password>
				    <prompt />
			</login>
			 <timeout>
				   <connectiontimeout>1000</connectiontimeout>
				   <logintimeout>750</logintimeout>
				   <passwordtimeout>750</passwordtimeout>
				   <commandtimeout>750</commandtimeout>
			 </timeout>
			 <command>
				   <command1>set</command1>
				   <command2>show state</command2>
				   <command3>show esn</command3>
				   <command4 />
				   <command5 />
			  </command>
			  <options>
				   <loginmacro>True</loginmacro>
				   <postcommands>True</postcommands>
				   <endlinechar>10</endlinechar>
			  </options>

I need a value that changes that LF to a Newline(CR/LF) character

---------- Post updated at 07:58 AM ---------- Previous update was at 07:54 AM ----------

Here is a screen shot of the options I am trying to change

img.photobucket.com/albums/v394/Jett/Configuration-CR_2013-05-03_08-48-49.jpg
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

Remove last newline character..

Hi all.. I have a text file which looks like below: abcd efgh ijkl (blank space) I need to remove only the last (blank space) from the file. When I try wc -l the file name,the number of lines coming is 3 only, however blank space is there in the file. I have tried options like... (14 Replies)
Discussion started by: Sathya83aa
14 Replies

3. UNIX for Dummies Questions & Answers

How to add newline before and after a special character?

So I have a file that contains >NM_#########AUGCAUCGUAGCUAGUCGAUACUGGACUG>NM_########AUGAGUAUGUAUGAUGUAUGUAUGA where # is any digit 0-9 (the text is many repetitions of the pattern above, not just that, but all in one line), and I want it to show >NM_#########... (2 Replies)
Discussion started by: ShiGua
2 Replies

4. Shell Programming and Scripting

replacing by newline character

I have a file (pema)with a single long record which i have to break up into multiple lines Input s1aaaaaaaaaaaaaaaaaaaaaaas1bbbbbbbbbbs1cccccccccc Output s1aaaaaaaaaaaaaaaaaaaaaaa s1bbbbbbbbbb s1cccccccccc m planning to do it by replacing s1 by \ns1 \n is the new line character i... (5 Replies)
Discussion started by: pema.yozer
5 Replies

5. UNIX for Dummies Questions & Answers

newline character in a variable

variable="unix\nlinux" echo $variable expected output: unix linux :wall: can i do that ?? thanks in advance!! (3 Replies)
Discussion started by: sathish92
3 Replies

6. Shell Programming and Scripting

Why SED can't see the last newline character?

Removed. My question does not make sense. and SED does see the last newline character. But I still have a question: How to remove the last newline character(the newline character at the end of last line) using SED? ---------- Post updated 05-01-11 at 10:51 AM ---------- Previous update was... (7 Replies)
Discussion started by: kevintse
7 Replies

7. UNIX for Dummies Questions & Answers

echo without newline character

hi, I have a for loop where in I write some file name to another file. I want to write all the filenames to another without any newlines. how can i avoid getting new lines with echo? Thanks, Srilaxmi (2 Replies)
Discussion started by: srilaxmi
2 Replies

8. UNIX for Dummies Questions & Answers

newline character

hi, I want to print the below lines "Message from bac logistics The Confirmation File has not been received." When i give like this in the code "Message from bac logistics\n The Confirmation File has not been received." It is giving only Message from bac logistics\n The... (9 Replies)
Discussion started by: trichyselva
9 Replies

9. Shell Programming and Scripting

Concatenate the string with the newline character

Hi , i want to Concatenate a string and use the following code str="i" str="$str am \n" str="$str a \n" str="$str boy \n" echo $str I want to ouput this i am a boy However it outputs i am \n a \n boy \n (3 Replies)
Discussion started by: youareapkman
3 Replies

10. UNIX for Dummies Questions & Answers

How can I replace newline character?

Hi, I am trying to write a script to prepare some text for use as web content. What is happening is that all the newlines in the textfile are ignored, so I want to be able to replace/add a few characters so that for a file containg: This is line 1. This is line two. This is line four.... (1 Reply)
Discussion started by: ghoti
1 Replies
Login or Register to Ask a Question