web-dev-qa-db-ja.com

フォルダー内のすべてのファイルのパターンを変更する方法

次のようなファイルがたくさんあります。

bla.super.lol.S01E03.omg.bbq.mp4
bla.super.lol.S01E04.omg.bbq.mp4
bla.super.lol.s03e12.omg.bbq.mp4

すべての名前を次のように変更する必要があります。

s01e03.mp4
s01e04.mp4
s03e12.mp4

私はfor file in *; do mv $file ${file%%\.omg*}; doneでそれをやろうとしましたが、それはS01E01の後の部分だけを削除します、それの前ではないので、助けてください

3
Ya_34

renameprename)の場合:

rename -n 's/^bla\.super\.lol\.[sS](\d+)[eE](\d+)\..*(\.mp4$)/s$1e$2$3/' *.mp4

-nはドライランニングを行います。名前の変更の可能性に満足している場合は、-nを削除して、実際の再生を実行します。

rename 's/^bla\.super\.lol\.[sS](\d+)[eE](\d+)\..*(\.mp4$)/s$1e$2$3/' *.mp4

例:

$ ls -1
bla.super.lol.S01E03.omg.bbq.mp4
bla.super.lol.S01E04.omg.bbq.mp4
bla.super.lol.s03e12.omg.bbq.mp4

$ rename -n 's/^bla\.super\.lol\.[sS](\d+)[eE](\d+)\..*(\.mp4$)/s$1e$2$3/' *.mp4
bla.super.lol.S01E03.omg.bbq.mp4 renamed as s01e03.mp4
bla.super.lol.S01E04.omg.bbq.mp4 renamed as s01e04.mp4
bla.super.lol.s03e12.omg.bbq.mp4 renamed as s03e12.mp4
9
heemayl
#!/bin/bash
IFS="\n"                               # Handle files with spaces in the names
for file in *.mp4; do
    newfile="${file/bla.super.lol./}"  # Strip the prefix you don't want
    newfile="${newfile/S/s}"           # Change the first S to an s
    newfile="${newfile/E/e}"           # Change the first E to an e
    newfile="${newfile.%omg.bbq*}"     # Strip the suffix you don't want
    newfile="${newfile}.mp4}"          # Tack on the file extension again
done
if [[ "$file" == "$newfile" ]]; then
    echo "Not renaming $file - no change decreed."
Elif [[ -f "$newfile" ]]; then
    echo "Not renaming $file - $newfile already exists."
else
    mv -- "$file" "$newfile"           # Make the change
fi
2
DopeGhoti

複雑にしないでおく..

rename 's/.*\.(\w+)\.omg\..*mp4$/\L$1.mp4/' *.mp4

例:

$ echo 'bla.super.lol.S01E03.omg.bbq.mp4' | Perl -pe 's/.*\.(\w+)\.omg\..*mp4$/\L$1.mp4/'
s01e03.mp4
1
Avinash Raj