find . -type f -name '*.tex' -maxdepth 1 -print0 | xargs sed -i'.bak' -e 's/、/,/g' -e 's/。/./g'
via
Qiita - ken0nek - Atomで作る快適な論文執筆TeX環境http://qiita.com/ken0nek/items/f98f88c9c45d8499786e
find . -type f -name '*.tex' -maxdepth 1 -print0 | xargs sed -i'.bak' -e 's/、/,/g' -e 's/。/./g'
defaults write -app Skim SKAutoReloadFileUpdate -boolean true
" clipboard sharing
set clipboard+=unnamed
$ rails generate controller tasks
$ rails destroy controller tasks
$ heroku create
Creating app... done, ⬢ heroku-appname-00000
https://heroku-appname-00000.herokuapp.com/ | https://git.heroku.com/heroku-appname-00000.git
$ heroku list
=== user@example.com Apps
heroku-appname-00000
heroku-appname-11111
heroku-appname-22222
$ heroku apps:destroy --app heroku-appname-00000 --confirm heroku-appname-00000
▸ WARNING: This will delete ⬢ heroku-appname-00000 including all add-ons.
▸ To proceed, type heroku-appname-00000 or re-run this command with --confirm
▸ heroku-appname-00000
> (ここに heroku-appname-00000 を入力)
Destroying ⬢ heroku-appname-00000 (including all add-ons)... done
$ heroku apps:destroy --app heroku-appname-00000 --confirm heroku-appname-00000
Destroying ⬢ heroku-appname-00000 (including all add-ons)... done
rails generate migration fix_typo
class ChangeColumnModelName < ActiveRecord::Migration[5.0]
def change
rename_column :modelname, :wrong, :correct
end
end
rake db:migrate
bundle init
bundle install --path vendor/bundle --jobs 4
bundle exec rails new sample_app
gem install spring
rm .idea