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.
から
abcd_if_vb.c abcd_if_av.c
に
edfg_if_vb.c edfg_if_av.c
abcd問題は、プレフィックスを持つファイルをキャッチすることです。
abcd
あまり。
for file in abcd* do mv "$file" "edfg${file#abcd}" done
がある場合はrename、これらのファイルの名前を次のように変更できます。
rename
rename abcd_ edfg_ abcd*
ls -1 abcd*|awk '{f=$0;gsub(f,"abcd","efgh");system("mv "$0" "f);}'