How to run shell script on your window PC. (please check the description below for link)

Опубликовано: 09 Июнь 2026
на канале: Gaurav Salunke
20,787
140

In Linux, shells like bash and korn support programming construct which are saved as scripts. These scripts become shell commands and hence many Linux commands are script.

Link to download software:
https://github.com/git-for-windows/gi...

Code for p1.sh file:
#!/bin/sh
echo "hello"

Codes to execute p1.sh file:
$ chmod +x p1. sh
$ ./ p1. sh