I thought I would start this thread to see what everyone else has to deal with during their 8-to-5 wage earning time. Idea is to post something (picture, lingo, crazy talk, etc..) that represents what it is that you do from 8-to-5. The more sense it makes to you and less to everyone else the better. So, I’ll start with mine… BTW, I hate my job as I waste my brain all day :clonk:. I would like to quit, open a Subway shop and hopefully the only thing my brain would need to process is to see if the guy in front of me wants mayo or mustard on his sandwich… :thumbsup:
Either doing this:
for i in *${RF_DATA_FILE_SUFIX}
do
export rfFile=`echo ${i}|cut -d"." -f1`
echo ${RF_FILE_TO_CF_SCRIPT_XREF} |grep ${rfFile} >/dev/null 2>&1
rc=${?}
if [[ ${rc} -eq 0 ]]
then
log_event "Validating subscription for file: ${i}. Status: VALID."
else
log_event "Validating subscription for file: ${i}. Status: INVALID."
log_event "Continuing but notifying OPS..."
mail -s "${script_name} - Warning: Unknown RF File" ${MAILTO_GROUP} <<!EOF!
`echo "File ${i} is not part of current subscription."`
!EOF!
fi
done
Or this:
Either doing this:
for i in *${RF_DATA_FILE_SUFIX}
do
export rfFile=`echo ${i}|cut -d"." -f1`
echo ${RF_FILE_TO_CF_SCRIPT_XREF} |grep ${rfFile} >/dev/null 2>&1
rc=${?}
if [[ ${rc} -eq 0 ]]
then
log_event "Validating subscription for file: ${i}. Status: VALID."
else
log_event "Validating subscription for file: ${i}. Status: INVALID."
log_event "Continuing but notifying OPS..."
mail -s "${script_name} - Warning: Unknown RF File" ${MAILTO_GROUP} <<!EOF!
`echo "File ${i} is not part of current subscription."`
!EOF!
fi
done
Or this:
