tr '[A-Z]' '[a-z]' # to lower case sed 's/]]/]/g' # replace ]] with ] awk '{print tolower($0)}' # change whole string to lower sed 's/^[0-9]*//g' # replace all numbers with nothing
tr '[A-Z]' '[a-z]' # to lower case sed 's/]]/]/g' # replace ]] with ] awk '{print tolower($0)}' # change whole string to lower sed 's/^[0-9]*//g' # replace all numbers with nothing
Leave a Reply