![]() |
2010-12-02
, 16:11
|
Posts: 1,048 |
Thanked: 1,127 times |
Joined on Jan 2010
@ Amsterdam
|
#2
|
There are three quoting mechanisms: the escape character, single quotes, and double quotes. A non-quoted backslash (\) is the escape character. It preserves the literal value of the next character that follows, with the exception of <newline>.
If a \<newline> pair appears, and the backslash is not itself quoted, the \<newline> is treated as a line continuation (that is, it is removed from the input stream and effectively ignored).
Enclosing characters in single quotes preserves the literal value of
each character within the quotes. A single quote may not occur Between single quotes, even when preceded by a backslash.
Enclosing characters in double quotes preserves the literal value of all characters within the quotes, with the exception of $, ‘, and \. The characters $ and ‘ retain their special meaning within double quotes. The backslash retains its special meaning only when followed
by one of the following characters: $, ‘, ", \, or <newline>. A double quote may be quoted within double quotes by preceding it with a backslash. When command history is being used, the double quote may not be used to quote the history expansion character.
![]() |
2010-12-02
, 16:22
|
Posts: 472 |
Thanked: 442 times |
Joined on Sep 2007
|
#3
|
![]() |
2010-12-02
, 17:09
|
Posts: 692 |
Thanked: 264 times |
Joined on Dec 2009
|
#4
|
![]() |
2010-12-03
, 08:03
|
Posts: 2,802 |
Thanked: 4,491 times |
Joined on Nov 2007
|
#5
|
It is absolutely vital that I use single quotes here, just like this, or the operation won't work (long story about wget, but trust me there's no other way)
![]() |
2010-12-03
, 12:19
|
Posts: 692 |
Thanked: 264 times |
Joined on Dec 2009
|
#6
|
That sounds like an interesting story in itself, please elaborate :-)
I assume the URL in question contains "interesting" characters which cause some breakage when used with double quotes on the command line. Have you tried using wget -i instead?
![]() |
2010-12-03
, 13:05
|
Posts: 992 |
Thanked: 738 times |
Joined on Jun 2010
@ Low Earth Orbit
|
#7
|
URL="http://www.example.com/some web page.php?a=1&b=2&c=3" wget "${URL}"
![]() |
2010-12-03
, 13:22
|
Posts: 692 |
Thanked: 264 times |
Joined on Dec 2009
|
#8
|
![]() |
2010-12-03
, 13:23
|
Posts: 2,802 |
Thanked: 4,491 times |
Joined on Nov 2007
|
#9
|
This is basically the problem I'm having:
http://www.planetmike.com/2005/04/12...th-ampersands/
$ wget -nv "http://talk.maemo.org/attachment.php?attachmentid=16109&d=1291329691" 13:27:52 URL:http://talk.maemo.org/attachment.php?attachmentid=16109&d=1291329691 [12750/12750] -> "attachment.php?attachmentid=16109&d=1291329691" [1]
I'll give wget -i a try, but putting the URLs in a file would be highly impractical...this script iterates through a list of URLs using cut.
$ long-pipeline-using-cut | wget -i -
![]() |
2010-12-03
, 13:34
|
Posts: 692 |
Thanked: 264 times |
Joined on Dec 2009
|
#10
|
So what escape sequence can I use to make the contents of my variable come out between single quotes? Give me a working answer and I can share my handy script!
"Impossible is not in the Maemo vocabulary" - Caballero