Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
#!/usr/bin/env bach curl -o /home/user/local.txt http://localhost/download/server.txt
$ bash /home/user/my-script.sh
curl: command not found
$ curl -o /home/user/local.txt http://localhost/download/server.txt
#!/usr/bin/env bach man bach No manual entry for bach #!/bin/bash #!/usr/bin/env bash
#!/usr/bin/env bach /usr/bin/curl -o /home/user/local.txt http://localhost/download/server.txt
#!/bin/sh PATH=/path/to/bin export PATH ....