摘要:
Exception in thread "main" while scanning for the next token found character '@' that cannot start any token. (Do not use @ for indentation) in 'reade 阅读全文
摘要:
直接在目录下执行: i=1; for x in *; do mv $x $i.png; let i=i+1; done 如果是windows,在git bash下执行也是可以的。 如果原保留原文件后缀名,可这样写: i=1; for x in *; do mv $x $i.${x##*.}; let 阅读全文