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.
我从 Mac Terminal Bash Shell 登录到我的服务器,但 unzip 命令不起作用,我不断收到以下消息:
bash: unzip: command not found
我可以从 Mac 终端通过 SSH 解压缩文件吗?
该程序unzip应位于/usr/bin:
unzip
/usr/bin
$ type unzip unzip is /usr/bin/unzip
最坏的情况,你总是可以“按名字要求”:
$ /usr/bin/unzip foo.zip
你应该检查你的PATH变量,因为它通常应该包括/usr/bin:
PATH
$ echo $PATH $ PATH=/bin:/usr/bin:$PATH $ export PATH
确保您已为终端选择了登录 shell。PATH这将在 shell 启动时为变量设置一个好的值。