Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

If you have a string "one two three", which shell command
would you use to extract the strings?

Answer Posted / narendrasairam

Though cut command works, if the string is too long you cant
expect redundancy in the code. So, better to translate the
spaces first and then reading the lines.

echo "enter the string :"
read string

echo $string | tr " " "\n" | sed '/^$/d' > lines.out

while read line
do
echo $line
done < lines.out

Is This Answer Correct ?    3 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does it mean by #!/Bin/sh or #!/Bin/bash at the beginning of every script?

1054


What are the zombie processes?

968


How do I read a .sh file?

1099


What is the syntax of while loop in shell scripting?

1040


What is computer cli?

889


What are the default permissions of a file when it is created?

1007


Print a given number, in reverse order using a shell script such that the input is provided using command line argument only.

1146


I want to connect to a remote server and execute some commands, how can I achieve this?

1017


What does it mean to debug a script?

1044


What is the command to find out users on the system?

960


Is shell scripting useful?

1038


How does path variable work?

961


What is the use of "$#" in shell scripting?

1046


How do you know which shell I am using?

1039


What is the fastest scripting language?

995