Read line containing $ in bash.

Hello, and good evening.

I try to manipulate some live GPS-data. But the data starts with $

gpspipe -r
$GPGGA,175546.835 ...
$GPGSA,A, ...
$GPGSV,3, ...
$GPGSV,3, ...
$GPGSV,3, ...
$GPRMC,175546.835,A, ...
$GPVTG, ... 

If the data is read into variables the first field (first field as in before firts comma (,)) is removed.

user $ line="$GPGGA,165706.836,1,2,3,4"
user $ echo $line
,165706.836,1,2,3,4

How can the data containing $ be put into variables?
/J

Do not use “…”, but ‘…’

This was maybe a bit a short answer.

henk@boven:~> line='$GPGGA,165706.836,1,2,3,4'
henk@boven:~> echo $line
$GPGGA,165706.836,1,2,3,4
henk@boven:~>

This is btw about assignment of a value to a variable, not about reading (as your title says).

And you could have found this yourself by studying the man page of bash. I know, it is not alwyas easy to find the appropriate parts. But IMHO the part about Quoting is rather easy to detecft:

QUOTING

Quoting is used to remove the special meaning of certain characters or words to the shell. Quoting can be used to disable special treatment for special characters, to prevent reserved words from being recognized as such, and to prevent parameter expansion.

Each of the metacharacters listed above under DEFINITIONS has special meaning to the shell and must be quoted if it is to represent itself.

When the command history expansion facilities are being used (see HISTORY EXPANSION below), the history expansion character, usually !, must be quoted to prevent history expansion.

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 . 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, when history expansion is enabled, !. 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. If enabled, history expansion will be performed unless an ! appearing in double quotes is escaped using a backslash. The backslash preceding the ! is not removed.

The special parameters * and @ have special meaning when in double quotes (see PARAMETERS below).

Words of the form $‘string’ are treated specially. The word expands to string, with backslash-escaped characters replaced as specified by the ANSI C standard. Backslash escape sequences, if present, are decoded as follows:
\a
alert (bell)
\b
backspace
\e
\E
an escape character
\f
form feed

new line
\r
carriage return

horizontal tab
\v
vertical tab
\
backslash
'
single quote
"
double quote

nn
the eight-bit character whose value is the octal value nnn (one to three digits)
\xHH
the eight-bit character whose value is the hexadecimal value HH (one or two hex digits)
\uHHHH
the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value HHHH (one to four hex digits)
\UHHHHHHHH
the Unicode (ISO/IEC 10646) character whose value is the hexadecimal value HHHHHHHH (one to eight hex digits)
\cx
a control-x character

The expanded result is single-quoted, as if the dollar sign had not been present.

A double-quoted string preceded by a dollar sign ($“string”) will cause the string to be translated according to the current locale. If the current locale is C or POSIX, the dollar sign is ignored. If the string is translated and replaced, the replacement is double-quoted.

[Pulling my hair … to try to keep awake] There are som much information, fell asleep all the time. I’m probably a baby that can’t handle that amoutn of information without a nap.
Thanks for pulling out the good stuff!

A Linux (and UNIX®) shell tutorial needs at least 4 sessions, each of about 3 hours duration, with homework exercises to be done between the sessions.

So wrong :smiley: :
A Linux shell tutorial needs at least 4 sessions, each of about 3 hours duration, with homework exercises to be done between the sessions.
A UNIX® shell tutorial needs at least 4 sessions each of about $3499, with homework exercises to be done after work hours.

That’s a lot of beer and drinking time :smiley:

You nailed it, Knurpht! rotfl!

Everything should be as simple as possible but, no simpler than that!!

OK, the original was spoken in German by a physicist and, it’s a rough translation of what he possibly said. There’s also another version, also in German; a rough translation is:

One must make things as simple as possible. But, not (absolutely) simple.

Ohhhh, is that the way to keep awake… Thanks for suggestions!:nerd:

“Real programmers” (east coast USA - early 1970s) used to survive on Coke – Antipodean (NZ and Oz), British and not a small number of past and present German programmers survive on – beer . . .