Difference between revisions of "Bash shell functions"

From wikieduonline
Jump to navigation Jump to search
Line 13: Line 13:
 
  my_funtion () {
 
  my_funtion () {
 
         echo "Executed my_function with $1 parameter"
 
         echo "Executed my_function with $1 parameter"
 +
}
 +
 +
prepend_space () {
 +
          sed s/^/" "/
 
  }
 
  }
  

Revision as of 10:46, 4 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"
}
prepend_space () {
         sed s/^/" "/
}


Related

See also

Advertising: