2
Shell脚本无法运行cd命令
我有一个基于文本的游戏Colossal Cave Adventure,我想使用Shell脚本启动而不是打开终端并输入cd ~/Desktop/CCAand ./Adventure。我尝试使用的代码是这样的: #! /bin/bash gnome-terminal -e 'cd ~/Desktop/CCA/; ./Adventure' 我收到的消息是这样的: There was an error creating the child process for this terminal Failed to execute child process `cd` (No such file or directory) 提供更改个人资料偏好设置或重新启动过程的选项。我还尝试使用绝对路径而不是~/,并且我的所有文件名均拼写正确并指向正确的位置。怎么了?