Difference between revisions of "Bash shell functions"

From wikieduonline
Jump to navigation Jump to search
Line 11: Line 11:
 
  }
 
  }
  
  my_funtion () {
+
  my_function () {
 
         echo "Executed my_function with $1 parameter"
 
         echo "Executed my_function with $1 parameter"
 
  }
 
  }
 +
 +
[[How to define Bash function in one line]]:
 +
 +
  my_one_line_function_needs_end_of_line () {  echo "Executed my_function with $1 parameter" ; }
 +
  
 
  prepend_space () {
 
  prepend_space () {

Revision as of 06:35, 20 July 2022

function { } 
log() {
	 echo "[$(date --rfc-3339=seconds)]: $*"
}
error() {
  	 echo "[$(date --rfc-3339=seconds)]: $*"
 	 exit 1
}
my_function () {
        echo "Executed my_function with $1 parameter"
}

How to define Bash function in one line:

 my_one_line_function_needs_end_of_line () {  echo "Executed my_function with $1 parameter" ; }


prepend_space () {
         sed s/^/" "/
}


Related

See also

Advertising: