# replaces blanks in file names by commas # (to ease handling the # files within the ldt directory created by unzipping sts_lst.zip) for F in *\ *.*; do mv "$F" "${F// /,}" ; done