Difference between revisions of "Bash shell functions"

From wikieduonline
Jump to navigation Jump to search
(Created page with "* Bash: function { } log() { echo "[$(date --rfc-3339=seconds)]: $*" } error() { echo "[$(date --rfc-3339=seconds)]: $*" exit 1 } my_fun...")
 
Line 1: Line 1:
* [[Bash]]:
 
  
 
  [[function]] { }  
 
  [[function]] { }  
Line 16: Line 15:
 
  }
 
  }
  
 
+
== See also ==
 
* {{functions}}
 
* {{functions}}
 
* {{Bash}}
 
* {{Bash}}
 +
 +
[[Category:Bash]]

Revision as of 17:10, 24 June 2022

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

See also

Advertising: