何番煎じかわからないですが…
さくらレンタルサーバーのスタンダードプランのOSはFreeBSDでデフォルトのシェルはcshみたいです。
いつもbash使っているのでTabで保管してくれないのは物凄く面倒…
なので、bashに変更してみました。やり方は簡単
とりあえず、今何のシェルを使ってるか確認
% echo $SHELL
/bin/csh
どんなシェルが使えるか確認
% cat /etc/shells
# $FreeBSD: release/9.1.0/etc/shells 59717 2000-04-27 21:58:46Z ache $
#
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.
/bin/sh
/bin/csh
/bin/tcsh
/usr/local/bin/bash
/usr/local/bin/rbash
/usr/local/bin/zsh
/usr/local/bin/rzsh
/usr/bin/passwd
今回はbashを使うので下記のコマンドを打つ
パスワードを打つ必要が有る
% chsh -s /usr/local/bin/bash
Password:
chsh: user information updated
ログインし直すとbashになってる。
.bashrcと.bash_profileを作る
vim .bashrc
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
alias ll='ls -l'
vim .bash_profile
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
以上です。
次は
コマンドを入力する左側がディレクトリ移動する度に増えてくという問題に当たったので変更していきます。
コマンドを入力する左側の表示を変更する