Skip to content

aktechnohacker/Shell-Scripting

Repository files navigation

Shell-Scripting

Buy Me A Coffee

What is Shell ?

* A shell is an interface/command line for the user. A shell provide an environment to user to execute commands and interact with kernel.

What is Shell Scripting?

*Shell scripts consist of a set of commands to perform a task. All the commands execute sequentially. some tasks like file manipulation, program execution, user interaction, automation of tasks, etc can be done.

What is #!/bin/bash?

#!/bin/bash is a shebang line. It tells the Linux OS which interpreter to use to parse the rest of the file.

Types of Shell ?

*Bash
*sh
*ksh
*tsh
*fish
*zsh

What is Variable ?

VAR_NAME=value

VAR_NAME=$(hostname)

echo $VAR_NAME

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages