たとえば、ディレクトリ「blob」が存在し、「blob [return]」と入力すると、システムcd
はblobディレクトリに移動します。
Linuxの(Ubuntuの)で、私は追加することができshopt -s autocd
、私に.bashrc
ファイルが、OS X上で、これはエラーを与えます:-bash: shopt: autocd: invalid shell option name
たとえば、ディレクトリ「blob」が存在し、「blob [return]」と入力すると、システムcd
はblobディレクトリに移動します。
Linuxの(Ubuntuの)で、私は追加することができshopt -s autocd
、私に.bashrc
ファイルが、OS X上で、これはエラーを与えます:-bash: shopt: autocd: invalid shell option name
回答:
autocd
bash 4.0で追加されました。Homebrewでbashの新しいバージョンをインストールしてから、デフォルトのログインシェルをchsh
次のように変更できます。
brew install bash;echo /usr/local/bin/bash|sudo tee -a /etc/shells;chsh -s /usr/local/bin/bash
新しいログインシェル(またはターミナルまたはiTerm 2のデフォルトではタブ)を開いた後、のecho $BASH_VERSION
ようなものを印刷する必要があります4.2.45(2)-release
。
TerminalおよびiTerm 2はデフォルトでログインシェルとして新しいシェルを開くため、bashは読み取ります~/.bash_profile
が、読み取りはできません~/.bashrc
。~/.bashrc
からソースを取得していない場合は~/.bash_profile
、の代わりにを追加shopt -s autocd
し~/.bash_profile
ます~/.bashrc
。
bash -version
$ PATHの最初のバージョンになります。試しましたecho $BASH_VERSION
か?
/usr/bin/login
などlogin -fp $USER
で開くように設定されていますか?
の出力は、shopt -p
ここでいくらか助けになります。設定可能なオプションのリストを出力します。悲しいことに、ライオンでautocd
は、それらの1つではありません(以下の抜粋を参照)。
上記の編集Lauriの答えには、シェルを更新して含めるためのソリューションがありますautocd
$ shopt -p
shopt -u cdable_vars
shopt -u cdspell
shopt -u checkhash
shopt -s checkwinsize
shopt -s cmdhist
shopt -u compat31
shopt -u dotglob
shopt -u execfail
shopt -s expand_aliases
shopt -u extdebug
shopt -u extglob
shopt -s extquote
shopt -u failglob
shopt -s force_fignore
shopt -u gnu_errfmt
shopt -u histappend
shopt -u histreedit
shopt -u histverify
shopt -s hostcomplete
shopt -u huponexit
shopt -s interactive_comments
shopt -u lithist
shopt -s login_shell
shopt -u mailwarn
shopt -u no_empty_cmd_completion
shopt -u nocaseglob
shopt -u nocasematch
shopt -u nullglob
shopt -s progcomp
shopt -s promptvars
shopt -u restricted_shell
shopt -u shift_verbose
shopt -s sourcepath
shopt -u xpg_echo
sudo port install bash
ステップ1へのサブビングも 同様に機能します。