| bio | website | icyrock.com |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 2 years, 8 months |
| seen | May 22 at 1:19 | |
| stats | profile views | 95 |
More here: icyrock.com
|
Dec 12 |
awarded | Enlightened |
|
Dec 12 |
awarded | Nice Answer |
|
Sep 20 |
comment |
What is 127.0.0.2 IP address for? @SilverSkin Would you mind explaining what you mean? The only difference between what's in answer and what's in Wikipedia now is that they (correctly) excluded 127.0.0.0 and 127.255.255.255, which are network / broadcast addresses. The gist is still the same - 127.x.x.x == 127.0.0.1 (except for 127.0.0.0 and 127.255.255.255, which is expected on any /8 network). |
|
Sep 10 |
awarded | Tumbleweed |
|
Sep 8 |
awarded | Yearling |
|
Sep 3 |
asked | Temporarily disable window snapping in xfce4 |
|
Aug 6 |
awarded | Notable Question |
|
Jul 30 |
awarded | Nice Answer |
|
Jul 21 |
answered | Notepad++: Regex issue |
|
Jul 21 |
awarded | Constituent |
|
Jul 14 |
awarded | Caucus |
|
Jun 8 |
awarded | Constituent |
|
Jun 8 |
awarded | Caucus |
|
Apr 15 |
comment |
Pop current directory until specific file is found @zpea Well, the requirement as "The script would end once we find the file or we reach the root." - so, it's up to the specs ;) Useful comment, though, thanks! |
|
Apr 14 |
answered | Pop current directory until specific file is found |
|
Apr 8 |
comment |
How to use verbatim strings in sed? The command in the provided links gives you that (the one you put in your first comment to my answer). The problem is that you cannot do that the way you want - the input from echo command cannot even get to the sed to be escaped, it has to be escaped in-place to be even printed by echo correctly. The other solution - putting the string into the file - is what would work, see my edit. Hope that will work for you. |
|
Apr 7 |
revised |
How to use verbatim strings in sed? added 627 characters in body |
|
Apr 7 |
comment |
How to use verbatim strings in sed? If you mix both ' (single quote) and " (double quote), you will have to escape something in the string. This is not a "problem" with sed per-se, even if you do just echo "a\c:ti]\']x""/\//:~$%#^&"', it will be not a complete string. E.g. you cannot do echo "abc"" and expect it to print abc"` - you have to escape the ". |
|
Apr 7 |
answered | How to use verbatim strings in sed? |
|
Apr 1 |
answered | A Unix shell command alternative to echo |