0
0

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.

自作スクリプト + alias で作業効率化

Posted at

自作スクリプトを alias すると便利だよと何度か言ってますが、Qiita にまとめてみます。

まずは、macのホームディレクトリ。
Screen Shot 2019-05-31 at 11.33.11.png
~/tools というディレクトリを用意しました。
場所は別にどこでも構いません。

まずは簡単なスクリプトを用意します。
cd ~/tools; mkdir _unit; cd _unit
ということで、 ~/tools/_unit というディレクトリを作って移動しました。
以下の2つのスクリプトをぶち込んでおきます。

au2ang.rb
 input_real=ARGV[0].to_f
 output_real=0.52917721067*input_real
 p output_real
ang2au.rb
 input_real=ARGV[0].to_f
 output_real=input_real/0.52917721067
 p output_real

次に、これを alias します。
cd ~/tools; vi _alias
_alias というファイルに以下を入力。

_alias
# !/bin/bash

dir_now=`dirname $BASH_SOURCE`

alias au2ang="ruby ${dir_now}/_unit/au2ang.rb"
alias ang2au="ruby ${dir_now}/_unit/ang2au.rb"

~/.bashrc に以下を書き加えます。
source ~/tools/_alias

で、bashを立ち上げ直すと。
Screen Shot 2019-05-31 at 12.06.56.png

Å ⇔ Bohr の単位換算がターミナルを立ち上げれば簡単にできるようになりました。めでたしめでたし。

これだけならどうってことはないかもしれないですが、スクリプトさえ書ければいくらでも応用が効きます。数行で書ける便利スクリプトもいくつかあるので、機会があったらご紹介できればと。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?