Difference between revisions of "Bash shell functions"

From wikieduonline
Jump to navigation Jump to search
Line 17: Line 17:
  
 
== Related ==
 
== Related ==
* [[trim]]
+
* <code>[[trim]]</code>
 
 
  
 
== See also ==
 
== See also ==

Revision as of 18:26, 2 July 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"
}


Related

See also

Advertising: