Table of Contents

About

This page shows you how to define a block of code in bash

What is the syntax?

The block syntax is:

{

   # your code
   
}

Can I use the subshell syntax?

You can use the subshell syntax but you will not get any return status (meaning that you can't exit)

(

   # your code
   
)