Ben Breslauer wrote:
Quoting the echo should do it:
--script.sh---
!/bin/bash
while read LINE; do
echo "$LINE"
done
--
--Ben
That simple? Sorry I asked! :-)
--
Sincerely
Jose Alburquerque
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
Quoting the echo should do it:
--script.sh---
!/bin/bash
while read LINE; do
echo "$LINE"
done
--
--Ben
José Alburquerque wrote:
Hello list! I've got a simple shell question that I can't figure out.
I wrote a simple 3 line bash script desi
Hello list! I've got a simple shell question that I can't figure out.
I wrote a simple 3 line bash script designed to read from stdin and
output the lines to stdout that looks like the following:
--script.sh
#!/bin/bash
while read LINE; do
echo $LINE
done
--
3 matches
Mail list logo