Skip to content

This repo basically contains Shell script basics from Hackerrank

Notifications You must be signed in to change notification settings

pankajkumarravi/Linux_shell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Linux_shell

This repo basically contains Shell script basics from Hackerrank

1. A Personalized Echo

Write a Bash script which accepts as input and displays the greeting "Welcome (name)" Q: https://www.hackerrank.com/challenges/bash-tutorials---a-personalized-echo/problem

read name echo "Welcome $name"

2. display only odd natural numbers from 1 to 99.

printf '%s\n' {1..99..2}

3. Write a bash script that prints the string "HELLO".

echo "HELLO"

4. display the natural numbers from 1 to 50.

for i in {1..50} do echo $i don

About

This repo basically contains Shell script basics from Hackerrank

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published