PATHの設定方法
Linux用の自作フリーコマンドを端末上で自由に利用できるようにするには、パスを設定する必要がある。
Mint Linuxの場合ホームディレクトリ内にある.profileファイルで設定することになる。viなどのテキストエディタでファイルを開いたとき、特に何も設定しない場合は以下の文書がかかれている。
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
例えばholcalという実行コマンドが格納されている/usr/local/holcalへのパスを設定する方法は、パス設定の部分最後の行に以下のものを追加すればよい。
# set PATH so it includes user's private bin if it existsexport PATH=$PATH:/usr/local/holcal
設定されたパスをすぐに有効にしたい場合は、
source .profile
を実行すればよい。