如何在Windows 10中使用CygWin作为根目录运行.sh文件?

时间:2018-09-26 16:39:36

标签: shell cygwin root

我正在尝试使用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身份运行此文件? 还是有其他替代品呢?

1 个答案:

答案 0 :(得分:1)

您需要运行bash来处理脚本

 cygstart --action=runas /usr/bin/bash.exe -l <full-path-to>/fname.sh