for i in${!FILE_LIST[@]}; do FILE_LIST[$i]="${FILE_LIST[$i]%.*}" done
# echo "${FILE_LIST[@]}" | tr ' ' '\n' | sort -u FILE_LIST=($(echo"${FILE_LIST[@]}" | tr ' ''\n' | sort -u )) # echo ${#FILE_LIST[@]}; for i in${!FILE_LIST[@]}; do if [ -f ${FILE_LIST[$i]}.txt ]; then # 檔案 /path/to/dir/filename 存在 echo"File ${FILE_LIST[$i]}.txt exists." else # 檔案 /path/to/dir/filename 不存在 echo"File ${FILE_LIST[$i]}.txt does not exists." continue; fi
if [ -f ${FILE_LIST[$i]}.ctl ]; then # 檔案 /path/to/dir/filename 存在 echo"File ${FILE_LIST[$i]}.ctl exists." else # 檔案 /path/to/dir/filename 不存在 echo"File ${FILE_LIST[$i]}.ctl does not exists." continue; fi