Read character by character in line in which space is also included


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Read character by character in line in which space is also included
# 8  
Old 10-28-2014
I am in AIX ksh93 and it did not work.

---------- Post updated at 07:50 AM ---------- Previous update was at 07:48 AM ----------

yes i ran perl -v and it is giving output like this, but i have no idea about perl.

Please let me know if my ouput stored in some variable where i need to put that in ur command instead of print

print abc dbc

---------- Post updated at 07:53 AM ---------- Previous update was at 07:50 AM ----------

can anyone help me getting to under stand what does this command do.
Code:
line=${line#$single}

# 9  
Old 10-28-2014
Quote:
Originally Posted by pallvi_mahajan
I am in AIX ksh93 and it did not work.

---------- Post updated at 07:50 AM ---------- Previous update was at 07:48 AM ----------

yes i ran perl -v and it is giving output like this, but i have no idea about perl.

Please let me know if my ouput stored in some variable where i need to put that in ur command instead of print

print abc dbc
Code:
$line = "whatever your want to print"
printf "$line" | perl -ne ' @x = split("",$_); print "$_\n" foreach(@x); '


Last edited by vbe; 11-03-2014 at 12:32 PM..
# 10  
Old 10-28-2014
but how if i need to fetch this character in loop and need to do another action, then how i can do.

---------- Post updated at 08:07 AM ---------- Previous update was at 08:06 AM ----------

i need to take that character and grep in my file in which i mentioned valid character.

---------- Post updated at 08:49 AM ---------- Previous update was at 08:07 AM ----------

can some please let me know what does this command do

Code:
line=${line#$single}

# 11  
Old 10-28-2014
Try awk if you have

Code:
$ echo 'abcdefgh ijk' | awk '{for(i=1;i<=NF;i++)print $i}' FS=""
a
b
c
d
e
f
g
h
 
i
j
k

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Post Here to Contact Site Administrators and Moderators

How to read the nth character from the line.?

I have Index Line and I tried to get the 9th character from the file and to check the character is "|" or not. Shell Scripting. Sample Index file. "91799489|K8E|188.004.A.917994892.1099R.c.01.pdf|2013|10/15/2014|002|B|C|C"... (3 Replies)
Discussion started by: pavand
3 Replies

2. Shell Programming and Scripting

How to add a character after the first word/space on each line?

Hi:) I have a large file ( couple thousand lines ) and I'm trying to add a character after the first word/space on each line. eg: First line of text Second line of text Third line of text Fourth line of text Fifth line of text I'd like to accomplish: First - line of text Second... (8 Replies)
Discussion started by: martinsmith
8 Replies

3. Shell Programming and Scripting

How to read the filenames with space character in it

Hi, My Requirement is to read the filenames which possess space charatcer in it and pass the same file name to the other shell script as input parameter. Please provide your valuable suggestion. (5 Replies)
Discussion started by: cnraja
5 Replies

4. Shell Programming and Scripting

How to read one character form each line of the file?

Hi, Maybe this iscorrect forum for my question... I should read one character at a fixed position from each line of the file. So how ??? should be substituted in the code below: while read line ; do single_char=`???` echo "$single_char" done < $input_file OK...I did get an... (0 Replies)
Discussion started by: arsii
0 Replies

5. Shell Programming and Scripting

Read line based on character,

Hi Experts, I have called file1.txt contains below CREATE TABLE "IHUBDEV2"."TLM_BREAK_RULES" ( "OID" VARCHAR2(32) NOT NULL ENABLE, "TLM_PAY_CLASS_OID" VARCHAR2(32) NOT NULL ENABLE, "PUNCHED_BREAKS" NUMBER(1,0) DEFAULT 0 NOT NULL ENABLE, "NORMAL_BREAKS"... (3 Replies)
Discussion started by: naree
3 Replies

6. Shell Programming and Scripting

read the text file and print the content character by character..

hello all i request you to give the solution for the following problem.. I want read the text file.and print the contents character by character..like if the text file contains google means..i want to print g go goo goog googl google like this Using unix Shell scripting... without using... (1 Reply)
Discussion started by: samupnl
1 Replies

7. Shell Programming and Scripting

Get rid of the 7th character of each line if this is a space

I have a text file like this ... B 16 1.340E+05 A 18 3.083E+02 Wu123 1.365E+02 ... I would like to get rid of the 7th character of each line if this is a space character. Thank you, Sarah (5 Replies)
Discussion started by: f_o_555
5 Replies

8. Shell Programming and Scripting

read in a file character by character - replace any unknown ASCII characters with spa

Can someone help me to write a script / command to read in a file, character by character, replace any unknown ASCII characters with space. then write out the file to a new filename/ Thanks! (1 Reply)
Discussion started by: raghav525
1 Replies

9. UNIX for Dummies Questions & Answers

read a variable character by character, substitute characters with something else

im having trouble doing this: i have a variable with 2 characters repeating e.g. aababbbaaaababaabbaabbba is there a way i can search the variable for a's and b's and then change a's to b's and b's to a's? im guessing its like getting the 1's compliment of the string im doing this in... (2 Replies)
Discussion started by: vipervenom25
2 Replies

10. Shell Programming and Scripting

Read First Character of Each Line in File

I need a better way to read the first character of each line in a file and check if it equals the special character ¤. This character tells me where there is a break in the reports. The file has over 500,000 lines. Currently, this is my code - if ] I am using Korn Shell as a scripting... (7 Replies)
Discussion started by: azelinsk
7 Replies
Login or Register to Ask a Question