Skip to content
IohannesLong
Search
K
Main Navigation
机器人
python
c++
金融
linux
前端
中间件
java
求解
Appearance
Return to top
本页目录
重命名文件后缀
2025年3月13日
root
shell
for
i
in
`
ls
|
grep
JPG
|
awk
-F
. '{print$1}'`
;
do
mv $i.JPG $i.png ;
done