/usr/bin フォルダに bash スクリプトを作成します。次のようになります
#!/bin/bash
Whatever combination of commands you want to run when you type this thing.
とても簡単です。
端末に入力したい bash スクリプトに名前を付けて、実行可能にするだけです:chmod +x filename
準備完了です!
<オール>
パス変数を更新して、この bin ディレクトリを含めます。これを .profile
に入れます または .bash_profle
export PATH=$PATH":$HOME/bin"
「こんにちは」と言うスクリプトを作成し、bin ディレクトリに保存します。 $ chmod +x hello
で hello スクリプトに実行権限を与える .
#!/bin/bash
echo My first program
.profile
をリロードします または .bash_profle
:
$ . ~/.bash_profile
任意のディレクトリから、次のように入力するだけです:
$ hello
My first program
簡単に、エイリアスを作成します。
ダウンロード ディレクトリに cd するコマンドを書きたいとします。そして、それをcddと呼びたいです。
alias cdd='cd ~/Downloads'
任意のコマンドを作成できます。
詳細情報は次のとおりです。
http://www.mediacollege.com/linux/command/alias.html