bash_functions
This is an old revision of the document!
Table of Contents
Bash Functions
index # Print the position of $2 in $1
index() #@ Print the position of $2 in $1 { #@ USAGE: index STRING SUBSTRING local idx case $1 in *$2*) idx=${1%%$2*} echo $(( ${#idx} + 1 )) ;; *) echo 0 ;; esac }
die # Exit with error code and optional message
die() #@ Exit with error code and optional message { #@ USAGE: die RETURN_CODE [MESSAGE] result=$1 shift [ -n "$*" ] && printf "%s\n" "$*" >&2 exit "$result" }
Place SUBSTRING over STRING beginning at OFFSET
overlay() #@ Place SUBSTRING over STRING beginning at OFFSET { #@ USAGE: overlay VARNAME SUBSTRING OFFSET local varname=$1 substr=$2 start=$3 string eval "string=\${$varname}" left=${string:0:start} right=${string:start+${#substr}} printf -v "$varname" %s%s%s "$left" "$substr" "$right" }
Print the ASCII value of the first character
asc() #@ Print the ASCII value of the first character of each argument { #@ USAGE: asc STRING ... for char do printf "%d${EOV-\n}" "'$char" done }
Print argument in reverse
revword() #@ print each argument with bytes reversed for w do len=${#w} w2= n=0 while (( ${#w2} < len )) do w2=${w:n++:1}$w2 done printf "%s\n" "$w2" done
bash_functions.1372440356.txt.gz · Last modified: 2020/08/10 02:28 (external edit)