in reply to Re^5: appending a variable
in thread appending a variable
After removing the inside braces, there is no error. However, I am not seeing the value of $opstr added to YYYmmddHHMMSS. It should be YYYmmddHHMMSS00 in this case. PMOSS_P3_SIPNBVQM_5MIN_OHDR_20220428221115__31571.processing should be PMOSS_P3_SIPNBVQM_5MIN_OHDR_2022042822111500__31571.processing $INSTANCE is something which the server adds and in this case it is 31571.
my ($opstr) = $vmstr =~ /-(\d\d)$/; #using the value of $vmstr of +the VM but with an added 0 my $OPinst = "/PMOSS_SIPNBVQM_5MIN_OHDR_$YYYYmmddHHMMSS$opstr"; my $P3inst = "/PMOSS_P3_SIPNBVQM_5MIN_OHDR_$YYYYmmddHHMMSS$opstr" +; $FN_OUTPUT = "$DST_DIR${OPinst}_${INSTANCE}_$$"; # Suff +ixes added later: .processing .completed $FN_P3_OUTPUT ="$DST_DIR${P3inst}_${INSTANCE}_$$"; # Suf +fixes added later: .processing .completed
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: appending a variable
by GrandFather (Saint) on Apr 28, 2022 at 23:36 UTC | |
|
Re^7: appending a variable
by Marshall (Canon) on Apr 29, 2022 at 01:28 UTC | |
by pragovnj (Acolyte) on Apr 29, 2022 at 13:35 UTC | |
by hippo (Archbishop) on Apr 29, 2022 at 13:47 UTC | |
|