4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

findを使ってまとめて何かする

Last updated at Posted at 2014-07-24

調べるのが面倒なので、自分用のまとめです。

#まとめてリネーム

data01.dat, data02.dat, data03.dat, ...をweight01.dat, weight02.dat, weight03.datにリネームする。

find . -name 'data[0-9]*.dat' | sed -e 's/\(.\/data\(.[0-9]*\).dat\)/mv \1 weight\2.dat/g' | sh

#ファイルエンコーディングをまとめて変換

./A/weight01.dat, ./A/weight02.dat, ./A/weight03.dat,
./B/data01.dat, ./B/data02.dat, ./B/data03.dat,
./C/data01.dat, ./C/data03.dat, ./C/data03.datのdatファイル(A,B,Cの中にある.datファイルはこれで全部) のファイルエンコーディングをsjisからutf8に変換(新しいファイル名は filename.utf8.datとする)する。

find . -name '*.dat' -exec sh -c 'iconv -f sjis -t utf8 {} > {}.utf8.dat ' \;

WindowsのMicrosoft Excelからエクスポートしたcsvファイルなら、sjisをcp932に置換すればよい。

4
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?