从 Debian GNU/Linux 运行 bash 脚本

从 Debian GNU/Linux 运行 bash 脚本

关于如何在 Windows 上运行 bash 脚本有很多示例。例如:bash -c "command"。我取自 https://www.howtogeek.com/261591/how-to-create-and-run-bash-shell-scripts-on-windows-10/

但我想从 Debian 运行我的 bash 脚本。我已经在 Windows 上安装了它https://devblogs.microsoft.com/commandline/debian-gnulinux-for-wsl-now-available-in-the-windows-store/。现在我启动该 Debian 应用程序后就可以运行 bash 脚本。但是,例如,一旦我的计算机启动,我怎样才能从 Windows 运行 bash 脚本?。我不想打开应用程序然后手动输入bash /root/someBashScript.sh。如果我能以某种方式从 Windows 运行它,那就太好了。

编辑

我之所以想从 Debian 运行 bash 脚本,是因为我已经安装了我需要的应用程序。例如,该命令aws s3 sync "/mnt/c/GIT/Foo" s3://someDomain.com/FrontEnd/v1.0/不适用于第一个示例。如果我打开 Debian 应用程序然后输入该命令,它就可以正常工作。

答案1

例如,我在 debian windows 应用程序上安装了rsyncsudo apt-get install rsync我现在可以在 windows 上执行以下命令: wsl rsync --help例如。

相关内容