![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Development Releases: Linux Mint 4.0 Beta "Fluxbox", 4.0 Alpha "Debian" | iBot | UNIX and Linux RSS News | 0 | 01-04-2008 12:00 PM |
| Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`" | Lokesha | UNIX for Dummies Questions & Answers | 4 | 12-19-2007 10:52 PM |
| how could i make a program mixed with many "|", "<" and ">" | strugglingman | High Level Programming | 2 | 04-29-2006 05:11 AM |
| Unix "at" / "Cron" Command New Problem...Need help | Mohanraj | UNIX for Dummies Questions & Answers | 3 | 01-26-2006 05:08 PM |
| No utpmx entry: you must exec "login" from lowest level "shell" | peterpan | UNIX for Dummies Questions & Answers | 0 | 01-18-2006 01:15 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
"sed" problem
Hi All,
In the below line of command what is the functionality of sed -e "s/ //g" I want to know what could be the output of the sed command. count=`echo $count | sed -e "s/ //g"` in the above command $count is some number. Please help me out. Regards, Ravi Kumar Garlapati |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Quote:
|
|
#3
|
|||
|
|||
|
Hi Hitori,
You mean to say "s/ //g" indicates spaces ? count=`echo $count | sed -e "s/ //g"` if $count = "Ravi Kumar Garlapati" the output could be RaviKumarGarlapati, Am i right ? Regards, Ravi Kumar Garlapati |
|
#4
|
||||
|
||||
|
$ echo "Ravi Kumar Garlapati" | sed -e "s/ //g"
RaviKumarGarlapati |
|
#5
|
|||
|
|||
|
Hi Hitori,
Thank You. I got a clear picture of my command. Actually i am into maintenance kind of job, i am maintaining lot's of shell scripts. As i am new to shell script, i got this doubt. Thanking you once again. Regards, Ravi Kumar Garlapati |
|||
| Google The UNIX and Linux Forums |