Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 AIX 并使用无法自动完成目录路径和文件名的用户登录。首先我必须在 putty 中提交bash,然后我可以使用 tabulator-key 来自动完成目录路径。
bash
我需要做什么才能不需要提交bash命令?也许我必须为特殊文件设置一个条目?提前致谢!
如果您能够更改用户,您可以使用 smitty 将默认 shell 更改为 bash。
否则,只需exec bash在您的 ~/.profile 末尾添加一个,您的 shell 将自动切换到 bash。
exec bash
刚刚在 AIX 7.1.1.0 上做了这个!命令是:
chsh <username> /bin/bash
然后重新启动 SSH 会话。
完毕。