如何正确地将 python shell 添加到 /etc/shells 下的 shells 文件中?

如何正确地将 python shell 添加到 /etc/shells 下的 shells 文件中?

我也想对 Metasploit 做同样的事情。我知道使用 Kali 会更实用,但我的电脑不够好,无法在 VB 上运行它。

答案1

几种方式:

  • sudo vi /etc/shells
  • printf "%s\n" "/path/to/shell" | sudo tee -a /etc/shells
  • ed /etc/shells#aEnter/path/to/shellEnter.EnterwqEnter

相关内容