hi all
I need to verify if the second word from $line_from_file is a string with lowercase or uppercase characters
(WORD - string can be with numbers)
How to match WORD string? (I use this syntax in ksh script)
[[ ` echo $line_from_file | awk '{print $2}' ` = WORD ]] && print "MATCH"
WORD - can be small or capital characters with numbers (but not only numbers)
for example
WORD=textBIG
WORD=HOME_DIR
WORD=COMPUTER1
WORD=HOST_machine
Lidia