Posts

Showing posts with the label Shell Script

Shell Script Example Set 1

Image
  In this " Shell Script Example Set 1", You can learn different programming commands in LINUX Shell. If you are a beginner, then go to " Shell Script Example Set 2 " directly. This article covers File related scripts, date-related scripts, calculator related scripts, directory related scripts. The Linux command line is a text interface to your computer. Also known as shell, terminal , console , command prompts and many others, is a computer program intended to interpret commands . SHELL SCRIPTING EXAMPLE SET 1 In this example set, You can familiar with vi Editor Commands. A table containing commands, descriptions and examples are given below. vi Editor Commands COMMANDS DESCRIPTIONS EXAMPLE vi To create a shell script through vi editor vi first.sh sh To execute the shell script sh first.sh bash To execute the shell script bash first.sh ./ To execute the shell script ./ first.sh i To insert text into vi editor Esc i wq or x To save ...