/usr/bin/env: bash: No such file or directory 解决办法

前端之家收集整理的这篇文章主要介绍了/usr/bin/env: bash: No such file or directory 解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
The problem's cause was that Git on Windows converted the line endings of gradlew from Unix style (LF) to Windows style (CRLF).
You can turn off that automatic conversion using git config core.autocrlf false.
Setting the line endings of gradlew back to Unix style fixed the problem.


In Vim this is done using :set fileformat=unix.
原文链接:https://www.f2er.com/bash/388784.html

猜你在找的Bash相关文章