petitviolet blog

    論文のための句読点変換スクリプト

    2014-02-15

    Qiitased
    paper
    #!/usr/local/bin/zsh
    find . -name '*.tex' -print0 | xargs -0 sed -i '' -e 's/、/,/g'
    find . -name '*.tex' -print0 | xargs -0 sed -i '' -e 's/。/./g'
    

    そして

    chmod +x paper
    sudo mv paper /usr/local/bin
    

    これでどこでも

    paper
    

    とコマンドを打てば句読点が論文用になります!

    from: https://qiita.com/petitviolet/items/a831a8ce8ca7937b89ed