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