Sep 29, 2004 #1 malladisk Programmer Jun 14, 2001 69 US Hi, I'm trying to concatenate strings using the 'tr' command. $ echo "John Doe" | tr ' ' '' What I want to do is delete the space between John and Doe. What am I doing wrong? Thx, -S
Hi, I'm trying to concatenate strings using the 'tr' command. $ echo "John Doe" | tr ' ' '' What I want to do is delete the space between John and Doe. What am I doing wrong? Thx, -S
Sep 29, 2004 1 #2 vgersh99 Programmer Jul 27, 2000 2,146 US echo "John Doe" | tr -d ' ' vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+ Upvote 0 Downvote
echo "John Doe" | tr -d ' ' vlad +----------------------------+ | #include<disclaimer.h> | +----------------------------+