Skip to content

Commit

Permalink
Update PDY parsing in ush/radmon_verf_bcor.sh
Browse files Browse the repository at this point in the history
Refs NOAA-EMC#1925

Co-authored-by: Walter Kolczynski - NOAA <Walter.Kolczynski@noaa.gov>
  • Loading branch information
KateFriedman-NOAA and WalterKolczynski-NOAA authored Nov 28, 2023
1 parent 80c92c7 commit 9a3400e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ush/radmon_verf_bcor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ else

export pgm=${bcor_exec}

iyy=$(echo ${PDY} | cut -c1-4)
imm=$(echo ${PDY} | cut -c5-6)
idd=$(echo ${PDY} | cut -c7-8)
iyy="${PDY:0:4}"
imm="${PDY:4:2}"
idd="${PDY:6:2}"
ihh=${cyc}

ctr=0
Expand Down

0 comments on commit 9a3400e

Please sign in to comment.