Skip to main content

Command Palette

Search for a command to run...

Shell Scripting Tutorial for Beginners 1

Published
1 min read

find list of shells

cat /etc/shells

shell script content

#!/usr/bin/bash

echo "Hello World"

run the script file

./myscript.sh

output below

Hello World