想要將終端返回到 bryce@macbookpro 而不是 bryce@machine 並讓“ls”命令僅顯示可見文件和資料夾。
答案1
看起來您已經定義了一些別名。透過運行查找它是什麼:
alias ls
這必須在 shell 的啟動腳本中的某個位置定義。例如,對於 Bash,您可以在以下位置找到要查看的 fils 清單:文件接近末尾的部分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
。