system ("tremove @host:$ep");
That solves one problem by creating another. You've solved the problem of $ep not interpolating, but you've created the problem of @host interpolating, when the OP stated it's not intended to be a variable.
You could use either of the following techniques:
system( 'tremove @host:' . $ep ); system( "tremove \@host:$ep" );
Dave
In reply to Re^2: passing variables
by davido
in thread passing variables
by rudeb0y
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |