Adding CR/LF
- From: jhall@xxxxxxxxxxxxxx
- Date: Fri, 28 Sep 2007 18:34:22 -0000 (GMT)
I know this should be easy, but I cannot get it to work right. Basically,
I have a list of items, and I need to place each one on a separate line.
Here is the script I am using.
#!/bin/sh
FILENAMES="test1 test2 test3"
FILELIST=""
for filename in ${FILENAMES}
do
FILELIST="${FILELIST}${filename}"$'\n\r'
echo ${FILELIST}
done
And, here is the output I am getting.
test1$\n\r
test1$\n\rtest2$\n\r
test1$\n\rtest2$\n\rtest3$\n\r
The output I would like to see is:
test1
test2
test3
Thanks in advance for your assistance.
Jay
_______________________________________________
freebsd-questions@xxxxxxxxxxx mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscribe@xxxxxxxxxxx"
- Follow-Ups:
- Re: Adding CR/LF
- From: Giorgos Keramidas
- Re: Adding CR/LF
- From: Warren Block
- Re: Adding CR/LF
- From: Jerry McAllister
- Re: Adding CR/LF
- From: Chuck Swiger
- Re: Adding CR/LF
- Prev by Date: Re: FreeBSD 7.0, Open LDAP, PAM, TLS and NSS, howto?
- Next by Date: Re: File size discrepancies
- Previous by thread: File size discrepancies
- Next by thread: Re: Adding CR/LF
- Index(es):
Relevant Pages
|
|