Sponsored Content
Full Discussion: Print one by one character
Top Forums Shell Programming and Scripting Print one by one character Post 302541055 by alister on Friday 22nd of July 2011 09:55:24 AM
Old 07-22-2011
Quote:
Originally Posted by radoulov
Code:
s='Hi every one. How are you all ....'

# char by char
while [ ${#s} -gt 0 ]; do
  printf '%s\n' "${s%${s#?}}"
  s=${s#?}
  sleep 2
done  

s='Hi every one. How are you all ....'

# word by word
# the follwoing command will
# reset any positional parameters
# and it does not work if shell word
# splitting is disabled (zsh disables it
# by default)

set -- $s

for w; do
  printf '%s\n' "$w"
  sleep 2
done

Hello, radoulov:

For the sake of novice learners, I am pointing out two spots in your suggestions which make them unsuitable for handling miscellaneous text.

${s%${s#?}}: If there's an asterisk in the text, when the character preceding the asterisk should be output, the asterisk will be printed as well. For example, if the line is '2*3=6', when trying to output 2 by removing '*3=6' using the % shortest suffix removal operator, the asterisk will be forced to match nothing. Output in this instance will be '2*' instead of just '2'.

set -- $s: In the second solution you cannot quote $s since it depends on field splitting. Unfortunately, that also leaves the expansion open to file globbing, leaving the approach vulnerable a few metacharacters. I suppose this could be worked around by toggling a noglob option.

You are probably aware of these things, but, as I said, I mention them mostly for novices unaware of the corner cases.

Regards,
Alister
This User Gave Thanks to alister For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

AWK print a character many times

How can I print a '-' on the same line within awk, say 50 times, without actually typing '-' 50 times? Cheers (3 Replies)
Discussion started by: dbrundrett
3 Replies

2. 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

3. Shell Programming and Scripting

Make pwd print escape character

I decided I wanted to have the cd command print my full working directory after each cd command, so I put this cw command in .bashrc as a function. cw () { cd "${1}" pwd }While this works I would like pwd to print escapes when a space in a directory name exists. This would... (7 Replies)
Discussion started by: jelloir
7 Replies

4. Shell Programming and Scripting

shell script to print words having first and last character same.

Hi I want to write a shell script to print only those words from a file whose beginning and last character are same. Please help. Thanks, vini (5 Replies)
Discussion started by: vini kumar
5 Replies

5. Shell Programming and Scripting

Grep syntax print after certain character

My current code is: user@ubuntu:~/Desktop$ grep -e "\(packaged by\)\|\(employee\)\|\(file name\)\|\(Total Data (MB) Read\)\|\(Begin Time\)" log.txt packaged by = Ron Mexico employee = Michael Vick file name = Mike_Vick_2011.bat Total Data (MB) Read: 11.82 Begin Time: 6/13/2011... (8 Replies)
Discussion started by: chipperuga
8 Replies

6. Shell Programming and Scripting

Print the next ASCII character

Hi, In my file, for few field I have to print the next ASCII character for every character. In the below file, I have to do for the 2,3 and 5th fields. Input File ======== 1|abc|def|5|ghi 2|jkl|mno|6|pqr Expected Ouput file ======= 1|bcd|efg|5|hij 2|klm|nop|6|qrs (2 Replies)
Discussion started by: machomaddy
2 Replies

7. Programming

Python, How to print a character \

In python, if I use '\', error, use "\", error again, use '\\' or "\\", the print result will be \\ If I want to print a single \, what can I do? Thanks in advance Sorry... I have solved this problem... Thanks anyway (2 Replies)
Discussion started by: Henryyy
2 Replies

8. Programming

Print line by character in C

Hello, I am reading the K & R C book, and trying to understand more about putchar()/getchar() by practice. Similar to the exercise 1-12, I want try to parse each line by character. Although there are many site about the exercise, but I could find similar case of mine, which is similar to fold... (11 Replies)
Discussion started by: yifangt
11 Replies

9. Shell Programming and Scripting

Print character after pattern found

Hi Gurus, i need your help to create a script the will print a characters after the pattern was found. Sample lines are below: My birthday:"1977-16-07", My birthday:"1975-16-07" My birthday:"1970-16-07". My patter should be "birthday:", then i want to print the following characters which... (18 Replies)
Discussion started by: scripter123
18 Replies

10. Shell Programming and Scripting

How to print a particular character n number of times in a line??

hi, Is it possible to print a particular character n number of times in a line? for example. i am print the following line using echo command.. echo "files successfully moved" i want to count the number of characters that are been displayed. i am doin it using echo "files... (8 Replies)
Discussion started by: Little
8 Replies
All times are GMT -4. The time now is 02:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy