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.
ディレクトリ内のすべてのファイル名から「@2x~ipad」文字列を削除する方法を知っている人はいますか?特定のディレクトリ
端末からのループでできますか?何か案が?
(ターミナルで) bash を使用する:
for file in *2x~ipad.png; do mv $file ${file%%\@2x~ipad.png}.png done