Bash shell functions

From wikieduonline
Revision as of 17:09, 24 June 2022 by Welcome (talk | contribs) (Created page with "* Bash: function { } log() { echo "[$(date --rfc-3339=seconds)]: $*" } error() { echo "[$(date --rfc-3339=seconds)]: $*" exit 1 } my_fun...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
function { } 
log() {
	 echo "[$(date --rfc-3339=seconds)]: $*"
}
error() {
  	 echo "[$(date --rfc-3339=seconds)]: $*"
 	 exit 1
}
my_funtion () {
        echo "Executed my_function with $1 parameter"
}


Advertising: