এতে ফাংশনগুলি bash
মূলত নামযুক্ত যৌগিক কমান্ড (বা কোড ব্লক)। থেকে man bash
:
Compound Commands
A compound command is one of the following:
...
{ list; }
list is simply executed in the current shell environment. list
must be terminated with a newline or semicolon. This is known
as a group command.
...
Shell Function Definitions
A shell function is an object that is called like a simple command and
executes a compound command with a new set of positional parameters.
... [C]ommand is usually a list of commands between { and }, but
may be any command listed under Compound Commands above.
কোনও কারণ দেওয়া হয়নি, এটি কেবল বাক্য গঠন।
যেহেতু প্রদত্ত ওয়ান-লাইন ফাংশনে তালিকাটি কোনও নতুন লাইন বা এ দিয়ে শেষ করা হয়নি ;
, bash
অভিযোগ করে।