您当前的位置:首页 > 计算机 > 编程开发 > Shell

Shell 切换解释器,查看当前解释器

时间:03-05来源:作者:点击数:
  • 可以通过 chsh 修改解释器。
  • 查看当前所安装的解释器列表
    $ cat /etc/shells
    # List of acceptable shells for chpass(1).
    # Ftpd will not allow users to connect who are not using
    # one of these shells.
    
    /bin/bash
    /bin/csh
    /bin/dash
    /bin/ksh
    /bin/sh
    /bin/tcsh
    /bin/zsh
  • 查看当前解释器
    $ echo $SHELL
    /bin/zsh
  • 切换 bash
    $ chsh -s /bin/bash
  • 切换 zsh
    $ chsh -s /bin/zsh
方便获取更多学习、工作、生活信息请关注本站微信公众号城东书院 微信服务号城东书院 微信订阅号
推荐内容
相关内容
栏目更新
栏目热门