在 FreeBSD 中,默認的 shell 是 `/bin/tcsh`,也稱為 Tenex C Shell。tcsh 是 C Shell(csh)的改進版本,提供了許多額外的特性,如命令行編輯、歷史記錄、自動補全等,使其更易于使用和配置。
要查看當前用戶的默認 shell,可以通過運行以下命令來查看 `/etc/passwd` 文件中的用戶賬戶信息:
```bash
grep username /etc/passwd
```
其中 `username` 是你要查詢的用戶名。在返回的結果中,你會看到該用戶的默認 shell 列表中指定了使用的 shell。可以使用 `chsh` 命令來更改用戶的默認 shell。