我正在尝试使用CygWin终端在Windows 10中运行扩展名为“ .sh”的文件。我运行了以下命令。
$alias sudo="cygstart --action=runas"
$sudo ./fname.sh
我得到以下输出:
Unable to start 'fname.sh': There is no application associated with the
givenfile name extension.
有什么方法可以使用CygWin以root身份运行此文件? 还是有其他替代品呢?
答案 0 :(得分:1)
您需要运行bash来处理脚本
cygstart --action=runas /usr/bin/bash.exe -l <full-path-to>/fname.sh