2017-06-02 48 views

回答

1

在bash用的結構

for file in ZLOG_*.zip; do 
    [[ -e $file ]] || continue # check file exist 
    id=${file#ZLOG_} # remove prefix 
    id=${id%%_*}  # remove suffix 
    if ((id>106171)); then 
     echo "$file" 
    fi 
done >list.txt 
+0

謝謝..讓我試試吧。 – sailesh

相關問題