TonyNY has asked for the wisdom of the Perl Monks concerning the following question:
Hi
I'm trying to debug a string but for some reason it is printing on 3 lines instead of 2. Perhaps I am not concatenating thestring properly?
my $wgetlog = + '/usr/sfw/bin/wget -r -np --reject "index.html*" --https-only --no- +check-certificate --user ' . $userid . + ' --password ' . $password . ' https://' . $server . '/dev/' . $user +id . '/' . $actionid . "_" . $pkgname . '/'; print "$wgetlog\n";
here are my results:
/usr/sfw/bin/wget -r -np --reject "index.html*" --https-only --no-che +ck-certificate --user user01 --password password01 https://server01 /dev/user/99129 _DEPLOYMENT/
Please advise, thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: var string not printing correctly
by NetWallah (Canon) on Jun 29, 2018 at 01:32 UTC | |
by TonyNY (Beadle) on Jun 30, 2018 at 23:13 UTC | |
by TonyNY (Beadle) on Jun 29, 2018 at 11:31 UTC | |
|
Re: var string not printing correctly
by haukex (Archbishop) on Jun 29, 2018 at 08:29 UTC | |
by TonyNY (Beadle) on Jun 29, 2018 at 11:34 UTC | |
by haukex (Archbishop) on Jun 29, 2018 at 12:15 UTC | |
|
Re: var string not printing correctly
by hippo (Archbishop) on Jun 29, 2018 at 13:14 UTC | |
|
Re: var string not printing correctly
by bliako (Abbot) on Jun 29, 2018 at 10:58 UTC | |
by pryrt (Abbot) on Jun 29, 2018 at 13:11 UTC | |
by TonyNY (Beadle) on Jun 29, 2018 at 11:37 UTC |