I have a file that is generated in the following format fb.d.v6.fbp.200606131452.gz i.e. the current TIME is also attached to YYYYMMDD
my question is how do i build a IF condition in my ksh script so that I can get something like this below
if [[ -s $IN_DIR_Frd/fb.d.v6.fbp.${DT}*.gz ]]
the ${DT} is basically a user inputed date in the YYYYMMDD format
basically I want it to ignore the TIME value after the date?
any help would be highly appreciated