Online Bash Compiler

#Variable dan operator tarif=2000 lama=8 harusbayar=$(($tarif * $lama)) uangbayar=20000 kembalian=$(($uangbayar-$harusbayar)) echo "tarif parkir $tarif " echo "anda parkir selama $lama jam" echo "maka anda harus bayar $harusbayar" echo "uang yang anda bayarkan $uangbayar maka kembaliannya adalah $kembalian" #Array #Contoh Data Array OCS=(OCS1 OCS2 OCS3 OCS4 OCS5 OCS6) #Menampilkan Data ke- echo ${OCS[0]} #Menampilkan Jumlah Data echo "Jumlah OCS yang Kita Punya ${#OCS[@]}" #Menampilkan Semua Data dalam Array echo ${OCS[@]} # STRING - LEN kalo di Excel mah nama="Jayusman" echo "Jumlah Karakter pada kata $nama" ${#nama} #INDEX - EXPR #menghitung jumlahh karakter substring kalimat="Pesan Khusus dari Telkomsel" carihuruf="s" echo "jumlah huruf $carihuruf pada kalimat $kalimat adalah " expr index "$kalimat" "$carihuruf" #Substring Extraction #menampilkan potongan text dari text tertentu #fungsi Mid pada Excel #sama seperti array, perhitungan dimulai dari 0 abjad="ABCDEFGHIJKLMNOPQRSTUVWXYZ" mulaike=10 sebanyak=5 echo ${abjad:$mulaike:$sebanyak} #contoh aja nih smscontent="Info Gempa Mag:5.8, 11-Mar-19 23:34:29 WIB, Lok:1.13 LU,98.76 BT (63 km BaratDaya PADANGSIDEMPUAN-SUMUT), Kedlmn:85 Km ::BMKG" #dapatkan posisi tanda titik dua pertama #titik dua pertama ada pada huruf ke-15, x=`expr index "$smscontent" ':'` # mencari posisi titik dua y=`expr index "$smscontent" ','` # mencari posisi tanda koma z=$((y - x -1)) # menghitung bearapa karakter antara : dan , echo ${smscontent:$x:$z} #Substring Replacement text="subjek, tagihan layanan atas nama subjek periode Maret 2019 sebesar 200.000" echo ${text[@]/subjek/Jayusman} #1. mengganti subjek pertama echo ${text[@]//subjek/Jayusman} #2. mengganti semua subjek echo ${text[@]/%subjek/Jayusman} #3. mengganti subjek terakhir echo ${text[@]// layanan/} #4. mengapus kata layanan #Decision Making #IF satu Kriteria name="Salmon" if [ "$name" = "Salma" ]; then echo "Ya - Saya $name" else echo "Bukan - Saya $name" fi #If Mjulti Kriteria JenisKelamin="L" if [ "$JenisKelamin" = "L" ]; then echo "Laki - Laki" elif [ "$JenisKelamin" = "P" ]; then echo "Perempuan" else echo "Jenis Kelamin dipertanyakan" fi #If pada Operator Matematika #perintah lebih kecil dari -lt lower then #comparison Evaluated to true when #$a -lt $b $a < $b #$a -gt $b $a > $b #$a -le $b $a <= $b #$a -ge $b $a >= $b #$a -eq $b $a is equal to $b #$a -ne $b $a is not equal to $b #$a != $b $a is different from $b a=12 b=25 if [ "$a" -lt "$b" ]; then echo "benar" else echo "salah" fi # case mycase=4 case $mycase in 1) echo "You selected bash";; 2) echo "You selected perl";; 3) echo "You selected phyton";; 4) echo "You selected c++";; 5) exit esac mytim=(Aningga Jayusman Wira Kuncoro) for i in ${mytim[@]} ; do echo "Nama saya adalah $i" done #while qty=12 while [ $qty -gt 0 ]; do echo "Nomor: $qty" qty=$(($qty - 1)) done #until jml=1 batas=12 until [ $jml -gt $batas ]; do echo "Nomornya : $jml" jml=$(($jml + 1)) done

About Online Bash Compiler

Try our Online Bash Compiler (Version GNU Bash v5.1.16) to Edit, Run, and Share your Bash Code directly from your browser. This online development environment provides you the latest version GNU Bash v5.1.16.

How to use Online Bash Compiler?

Write and Execute Code

  • Write your program (or, paste it) directly under the "Source Code" tab.
  • If you want to save your program, go to the "Project" menu and save it.
  • You can directly execute your program without saving it by clicking on on "Execute" button.

User Input

The latest version of Coding Ground allows to provide program input at run time from the termnial window exactly the same way as you run your program at your own computer. So simply run a program and provide your program input (if any) from the terminal window available in the right side.

Online Bash Compiler: Keyboard Shortcuts

The following are the keyword shortcut of this Online Bash Compiler:

ShortcutDescription
⌘ + EnterRun the program
⌘ + SSave Project (Login Required)
⇧ + ⌘ + SSave As Project
⌘ + PNew Project
⌘ + GShare Project
⌘ + ZUndo Editing
⌘ + YRedo Editing
⌘ + ASelect All Text
⌘ + XCut Selected Text
⌘ + CCopy Selected Text
⌘ + VPaste Copied Text
⌘ + FSearch Text
⌘ + ⌥ + FReplace Text
ShortcutDescription
Ctrl + EnterRun the program
Ctrl + SSave Project
Shift + Ctrl + SSave As Project
Ctrl + GShare Project
Ctrl + ZUndo Editing
Ctrl + YRedo Editing
Ctrl + ASelect All Text
Ctrl + XCut Selected Text
Ctrl + CCopy Selected Text
Ctrl + VPaste Copied Text
Ctrl + FSearch Text
Ctrl + HReplace Text

Online Bash Compiler: Save and Share Bash Code (Project)

Save Bash Project Online

You can save your Bash Project with us so that you can access this project later on. To save a project you will need to create a login Id with us. So before you save a project, please create a login Id using a link given at the top right corner of this page.

Share Bash Project Online

You can use this feature to share your Bash Code with your teachers, classmates and colleagues. Just click Share Button and it will create a short link, which can be shared through Email, WhatsApp or even through Social Media. A shared link will be deleted if it has been passive for almost 3 months.

More Features of Online Bash Compiler

  • Theme – You can change the current editor's theme from the "Editor Theme" option under "Settings" menu.
  • Font Size – You can change the font size of the editor /compiler from from the "Font Size" option under "Settings" menu.
  • Tab Size – You can change the tab size from the "Tab Size" option under "Settings" Menu.
  • Show/Hide Line Numbers – You can show/hide the line number with the code from the "Show Line Numbers" or "Hide Line Numbers" option under "Settings" Menu.
  • And, many more.

Benefits of Using Online Bash Compiler

There are several benefits of using the Online Bash Compiler to run your Bash code:

  • Platform independence: You can run your code from any device without taking care of operating systems.
  • Convenience: You don't need to install anything for using this.
  • No setup required: There is no need for additional setup to run your code.
  • Updated version: Our online compiler/editors/terminals are the latest up-to-date.
 Execute |  Beautify | Share
My Projects
Change Password
My Profile
Logout
Undo
Redo
Cut
Copy
Paste
Delete
Select All
Find
Find and Replace
Editor Theme
Crimson
Eclipse
Github
Solarized
Cobalt
krTheme
Monokai
Terminal
Textmate
Twilight
Vibrant Ink
Font Size
8px
9px
10px
11px
12px
13px
14px
15px
16px
17px
18px
20px
22px
24px
Tab Size
1
2
3
4
5
6
7
8
Show Invisible
Hide Invisible
Show Line Numbers
Hide Line Numbers
Ace Editor (Default)
Vim Editor
Emacs Editor
Open New Project
Save Project
Save As New Project
Share Project
Search Project
Online Java Compiler
Online Python Compiler
Online C++ Compiler
Online CSharp Compiler
Online C Compiler
Online PHP Compiler
Online R Compiler
Online NumPy Compiler
More Compilers