Created
September 30, 2011 16:34
-
-
Save fumiyas/1254298 to your computer and use it in GitHub Desktop.
JIS 長音省略表記を修正するスクリプト (UTF-8 限定)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl -pi.orig | |
## | |
## JIS 長音省略表記を修正するスクリプト (UTF-8 限定) | |
## | |
## Author: さとうふみやす | |
## URL: https://gist.github.com/1254298 | |
## Copying: GNU GPLv3 | |
## Usage: | |
## find /targetdir -type f -name "*.html" -exec perl fix-jis-shorttail.pl {} + | |
## | |
s/( | |
アダプタ| | |
アドミニストレータ| | |
インストーラ| | |
エクスプローラ| | |
エディタ| | |
オーバ| | |
オブザーバ| | |
カウンタ| | |
キャラクタ| | |
クラスタ| | |
コンテナ| | |
コントローラ| | |
コンバータ| | |
コンピュータ| | |
サーバ| | |
スキャナ| | |
スライダ| | |
セパレータ| | |
デバッガ| | |
デベロッパ| | |
ドライバ| | |
ナビゲータ| | |
ハンドラ| | |
バッファ| | |
パラメータ| | |
ビューア| | |
フィルタ| | |
フォルダ| | |
フッタ| | |
ブラウザ| | |
プリンタ| | |
プレースホルダ| | |
プロジェクタ| | |
プロバイダ| | |
ヘッダ| | |
ベクタ| | |
ページャ| | |
ポインタ| | |
マスタ| | |
マネージャ| | |
メンバ| | |
モニタ| | |
ユーザ| | |
リゾルバ| | |
リンカ| | |
ローダ | |
)/$1ー/gx; | |
s/ーー/ー/g; | |
s/(ローダ)ー(ブル)/$1$2/g; | |
s/(フィルタ)ー(リング)/$1$2/gx; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment