Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Execute Bash Shell Online

# Hello World Program in Bash Shell

#echo "Hello World!"

#for ((i = 1 ; i<=10 ; i++))

#do
a=7
i=1
    while [ $i -le 10 ]
    #for ((j = 1 ; j<=5 ; j++))
        do
        #echo -n "$i"
        
  
  echo " expr = `$a \* $i `"
        
 #echo " $a * $i = `expr $a \* $i` "
 i=`expr $i + 1`
        done
   #echo ""    ##print new line##
#done

Heklo

# Hello World Program in Bash Shell

echo "Hello World!"

Execute Bash Shell Online

#!bin/bash

a=1234
b=2354

if [ $a -gt $b ]; then
echo This thing $a is greater than $b
elif [ $a -lt $b ]; then
echo This thing $a is less than $b
else
echo It must be equal
fi
pwd

introduction au shell josselyn

read name

echo "bonjour $name"

GuillaumeShellBeautifulTestDeOuf

#!/bin/bash

read name
echo "Bonjour $name"

ceciestunnomdeprojetquisonebien

#!/bin/bash


echo Bonjour $1

Unjolinomdeprojetunpeulong

# Hello World Program in Bash Shell

echo 

Execute Bash Shell Online

#!/bin/bash
echo "hello hansi"

Titan_Great_Battle_In_Jupitar

# Hello World Program in Bash Shell

echo "Hello World!"
echo "Go Home"
x=5
echo $x

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.