Jerry Geis
2006-Dec-18 17:07 UTC
[CentOS] command line with < > and not wanting to redirect
How do you format a command line that needs < > and they are not meant to redirect anything they are part of an email address. command -f "Some Email <someemail at somedomain.com>" -x -y -z I tried putting a backslach in front of the < and > but that didnt do it either. Thanks, Jerry
Diaa Radwan
2006-Dec-18 17:27 UTC
[CentOS] command line with < > and not wanting to redirect
Jerry Geis wrote:> How do you format a command line that needs < > > and they are not meant to redirect anything they are part of an email > address. > > command -f "Some Email <someemail at somedomain.com>" -x -y -zuse single quote command -f 'Some Email <someemail at somedomain.com>' -x -y -z> > I tried putting a backslach in front of the < and > but that didnt do it > either. > > Thanks, > > Jerry > _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centos >-------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature URL: <http://lists.centos.org/pipermail/centos/attachments/20061218/2442bfa3/attachment.sig>
Aleksandar Milivojevic
2006-Dec-18 18:06 UTC
[CentOS] command line with < > and not wanting to redirect
Quoting Jerry Geis <geisj at pagestation.com>:> How do you format a command line that needs < > > and they are not meant to redirect anything they are part of an > email address. > > command -f "Some Email <someemail at somedomain.com>" -x -y -z > > I tried putting a backslach in front of the < and > but that didnt do > it either.That's strange. Your example (with double or single quotes) should work. It surelly works for me: $ echo "Some Email <someemail at somedomain.com>" Some Email <someemail at somedomain.com> Have you done something strange in your shell's config file?