想要将终端返回到 bryce@macbookpro 而不是 bryce@machine,并让“ls”命令仅显示可见文件和文件夹。
答案1
看起来您已经定义了一些别名。运行以下命令查找它是什么:
alias ls
这必须在 shell 的启动脚本中定义。例如,在 Bash 中,您可以在以下位置找到要查看的文件列表:文件接近结尾的部分man bash
:
/etc/profile The systemwide initialization file, executed for login shells ~/.bash_profile The personal initialization file, executed for login shells ~/.bashrc The individual per-interactive-shell startup file
要暂时绕过别名,您可以运行command ls
或\ls
,或者使用 暂时删除别名unalias ls
。