# Day 4 - Basic Shell scripting for DevOps Engineers
What is Linux Shell Scripting?
A shell script is a set of commands is linux. It starts with #!/bin/bash and is used for automation and ad-hoc tasks.
Example of a shell script:
#!/bin/bash
whoami
pwd
find
date
history
What is #!/bin/bash? Can we wr...
pareshrathod.hashnode.dev2 min read