Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我确信这可以通过某种方式完成,但是我对 UNIX 命令行的有限知识需要在这里轻推。我想要做的是以下内容:
任何线索将不胜感激。
for i in `ls *.png` do params=`get parameters from $i` mv $i params$i done
作为 OP 的练习留下的是从 png 文件中获取信息的程序
请注意,这sips是获取图像信息的 bsd 命令:
sips
height=`sips -g pixelHeight $i` width=`sips -g pixelWidth $i` mv $i $heightX$width$i