名前付き画像が100万枚を超えています。
love-images-250x120.jpg
7788855441122-love-images-250x120.jpg
us-wallpapers33344.jpg
77441144desktop-wallpapers.jpg
desktop-wallpapers1144141411.jpg
次のように名前を変更したいと思います。
love-images.jpg
love-images-1.jpg
us-wallpapers.jpg
desktop-wallpapers.jpg
desktop-wallpapers-1.jpg
私はこのスクリプトを使用しています:
for f in [0-9]*; do mv "$f" "`echo $f | -f sed 's/^[0-9]*\W*//'`"; done
ただし、2つの画像の名前が同じ場合、このコードは停止します。これを行う方法はありますか?
答え1
これはPythonを使用して次のように行うことができます。
#!/usr/bin/python
import glob
import re
import os
from collections import Counter
origNames = glob.glob('*jpg')
finalNames = []
for i in origNames:
for old, new in [(r'\d+x\d+', ''), (r'\d', ''),(r'^\W+', ''),(r'-*\.-*', '.'), (r'\.jpg$', '')]:
i = re.sub(old, new, i)
finalNames.append(i)
counts = Counter(finalNames)
for s,num in counts.items():
if num > 1:
for suffix in range(1, num + 1):
finalNames[finalNames.index(s)] = s + str(suffix)
print(origNames, finalNames)
for i,j in zip(origNames, finalNames):
os.rename(i,j+".jpg")
答え2
Bashでは、解決策は次のとおりです。
#!/bin/bash
shopt -s extglob
for fn_old in *.jpg; do
i=0
fn_new=${fn_old##+([-0-9])} # strip leading number sequence in basename
fn_new=${fn_new/%[-0-9]*([-0-9x]).jpg/.jpg} # strip trailing number sequence in basename
while [[ -e $fn_new ]]; do # see if proposed name already exists
i=$((i+1)) # doublure counter
fn_new=${fn_new/%*([-0-9]).jpg/-$i.jpg} # try new filename with updated number
done
echo "$fn_old" -- "$fn_new"
mv "$fn_old" "$fn_new"
done
mv
ご注文にご注意ください。cp
名前の変更スキームが必要な/予想されていることを確認するために、最初の実行でコメントアウト(またはに置き換え)できます。
シェルモードと文字列操作の手順については、次を参照してください。 バッシュパターンマッチングそしてBash 文字列操作。