bash:functions
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:functions [2020/05/16 13:00] – peter | bash:functions [2021/01/09 11:48] (current) – peter | ||
---|---|---|---|
Line 2: | Line 2: | ||
Bash allows you to add local functions. | Bash allows you to add local functions. | ||
- | |||
- | ---- | ||
- | |||
- | ===== Keep Bash Functions Seperate from Bash Aliases ===== | ||
- | |||
- | It is recommended to keep functions seperate in their own file. | ||
- | |||
- | Create a new file called **/ | ||
- | |||
- | <code bash> | ||
- | # PETER ADDED THIS | ||
- | if [ -f ~/ | ||
- | . ~/ | ||
- | fi | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | <code bash> | ||
- | if [ -e $HOME/ | ||
- | source $HOME/ | ||
- | fi | ||
- | </ | ||
- | |||
---- | ---- | ||
Line 33: | Line 9: | ||
---- | ---- | ||
- | <file bash / | + | [[BASH: |
- | # | + | |
- | # Archiving functions. | + | |
- | # | + | |
- | # Creates an archive. | + | [[BASH: |
- | archive() { | + | |
- | if [ " | + | |
- | FILE=" | + | |
- | case " | + | |
- | *.tar.bz2|*.tbz2) shift && tar cvjf " | + | |
- | *.tar.gz|*.tgz) | + | |
- | *.tar) | + | |
- | *.rar) | + | |
- | *.zip) | + | |
- | *.7z) shift && 7zr a " | + | |
- | *) echo "' | + | |
- | esac | + | |
- | else | + | |
- | echo " | + | |
- | fi | + | |
- | } | + | |
+ | ---- | ||
- | # Extract an archive of any type. | ||
- | extract() { | ||
- | local opt | ||
- | local OPTIND=1 | ||
- | while getopts " | ||
- | case " | ||
- | h) | ||
- | cat << | ||
- | Usage: ${FUNCNAME[0]} [option] < | ||
- | options: | ||
- | -h show this message and exit | ||
- | -v verbosely list files processed | ||
- | End-Of-Usage | ||
- | return | ||
- | ;; | ||
- | v) | ||
- | local -r verbose=' | ||
- | ;; | ||
- | ?) | ||
- | extract -h >&2 | ||
- | return 1 | ||
- | ;; | ||
- | esac | ||
- | done | ||
- | shift $((OPTIND-1)) | ||
- | |||
- | [ $# -eq 0 ] && extract -h && return 1 | ||
- | while [ $# -gt 0 ]; do | ||
- | if [ -f " | ||
- | case " | ||
- | *.tar.bz2|*.tbz|*.tbz2) tar " | ||
- | *.tar.gz|*.tgz) tar " | ||
- | # *.tar.xz) tar " | ||
- | *.tar.xz) xz --decompress " | ||
- | *.tar.Z) uncompress " | ||
- | *.bz2) bunzip2 " | ||
- | *.deb) dpkg-deb -xv " | ||
- | # *.deb) sudo dpkg -i $1 ;; | ||
- | *.exe) cabextract " | ||
- | *.pax.gz) gunzip " | ||
- | *.gz) gunzip " | ||
- | *.lzma) unlzma " | ||
- | *.pax) pax -r -f " | ||
- | *.pkg) pkgutil --expand " | ||
- | *.rar) unrar x " | ||
- | *.rpm) rpm2cpio " | ||
- | # *.rpm) sudo alien -dik $1;; | ||
- | *.tar) tar " | ||
- | *.txz) mv " | ||
- | # *.xz) unxz " | ||
- | *.xz) xz --decompress " | ||
- | *.zip|*.war|*.jar) unzip " | ||
- | *.Z) uncompress " | ||
- | # *.7z) 7za x " | ||
- | *.7z) 7z x " | ||
- | *) echo "' | ||
- | esac | ||
- | else | ||
- | echo " | ||
- | fi | ||
- | shift | ||
- | done | ||
- | } | ||
- | |||
- | |||
- | # ls archives (inspired by `extract`) | ||
- | lsz() { | ||
- | if [ $# -ne 1 ] | ||
- | then | ||
- | echo "lsz filename.[tar, | ||
- | return 1 | ||
- | fi | ||
- | if [ -f $1 ] ; then | ||
- | case $1 in | ||
- | *.tar.bz2|*.tar.gz|*.tar|*.tbz2|*.tgz) tar tvf $1;; | ||
- | *.rar) | ||
- | *.zip) | ||
- | *) echo "' | ||
- | esac | ||
- | else | ||
- | echo "' | ||
- | fi | ||
- | } | ||
- | |||
- | |||
- | # Creates an archive (*.tar.gz) from given directory. | ||
- | maketar() { tar cvzf " | ||
- | |||
- | # Create a ZIP archive of a file or folder. | ||
- | makezip() { zip -r " | ||
- | |||
- | |||
- | # | ||
- | # Calculator functions. | ||
- | # | ||
- | |||
- | # Calculate an expression e.g. calc 1+1. | ||
- | calc() { | ||
- | echo " | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # cd. | ||
- | # | ||
- | |||
- | # cd = pushd, b = go backwards (popd), f = go forwards (kind of like " | ||
- | #alias d=' | ||
- | #alias b=' | ||
- | #alias f=' | ||
- | cd() { | ||
- | if [ " | ||
- | pushd $HOME >/ | ||
- | else | ||
- | pushd " | ||
- | fi | ||
- | } | ||
- | |||
- | |||
- | # cd to the directory a symbolically linked file is in. | ||
- | cdlink() { | ||
- | if [ " | ||
- | echo " | ||
- | elif [ -L " | ||
- | link=`/ | ||
- | if [ " | ||
- | echo " | ||
- | return | ||
- | fi | ||
- | dirName_=`dirname $link` | ||
- | cd " | ||
- | else | ||
- | echo "$1 is not a symbolic link" | ||
- | fi | ||
- | return | ||
- | } | ||
- | |||
- | |||
- | # cd to the dir that a file is found in. | ||
- | cdff() { | ||
- | filename=`find . -name $1 | grep -iv " | ||
- | if [ " | ||
- | dirname=${filename%/ | ||
- | if [ -d $dirname ] ; then | ||
- | cd $dirname | ||
- | fi | ||
- | fi | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # Directory functions. | ||
- | # | ||
- | |||
- | # Jumps to a directory at any level below using globstar. | ||
- | jd() { | ||
- | if [ -z $1 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | else | ||
- | cd **/$@ | ||
- | fi | ||
- | } | ||
- | |||
- | |||
- | # Go up a specified number of directories. | ||
- | # If you pass no arguments, it just goes up one directory. | ||
- | # If you pass a numeric argument it will go up that number of directories. | ||
- | # If you pass a string argument, it will look for a parent directory with that name and go up to it. | ||
- | up() { | ||
- | dir="" | ||
- | if [ -z " | ||
- | dir=.. | ||
- | elif [[ $1 =~ ^[0-9]+$ ]]; then | ||
- | x=0 | ||
- | while [ $x -lt ${1:-1} ]; do | ||
- | dir=${dir}../ | ||
- | x=$(($x+1)) | ||
- | done | ||
- | else | ||
- | dir=${PWD%/ | ||
- | fi | ||
- | cd " | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # Disk functions. | ||
- | # | ||
- | |||
- | # Pretty-print of ' | ||
- | # Inspired by ' | ||
- | mydf() {···· | ||
- | for fs ; do | ||
- | |||
- | if [ ! -d $fs ]; then | ||
- | echo -e $fs" :No such file or directory" | ||
- | fi | ||
- | |||
- | local info=( $(command df -P $fs | awk 'END{ print $2,$3,$5 }') ) | ||
- | local free=( $(command df -Pkh $fs | awk 'END{ print $4 }') ) | ||
- | local nbstars=$(( 20 * ${info[1]} / ${info[0]} )) | ||
- | local out=" | ||
- | for ((j=0; | ||
- | if [ ${j} -lt ${nbstars} ]; then | ||
- | out=$out" | ||
- | else | ||
- | out=$out" | ||
- | fi | ||
- | done | ||
- | out=${info[2]}" | ||
- | echo -e $out | ||
- | done | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # Downloading functions. | ||
- | # | ||
- | |||
- | # More persistent wget for fetching files to a specific filename. | ||
- | wgettofile() { | ||
- | [ $# -ne 2 ] && echo " | ||
- | urltofetch=$1 | ||
- | fname=" | ||
- | wget -O " | ||
- | } | ||
- | |||
- | | ||
- | # | ||
- | # Email functions. | ||
- | # | ||
- | | ||
- | # Email me a short note. | ||
- | emailme() { | ||
- | if [ $# -eq 0 ]; then | ||
- | echo Usage: emailme text | ||
- | return 1 | ||
- | fi | ||
- | echo " | ||
- | echo "Sent email" | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # File functions. | ||
- | # | ||
- | | ||
- | # Backup file(s) | ||
- | filebackup() { | ||
- | if [ $# -lt 1 ]; then | ||
- | echo Please supply a file to backup | ||
- | return 1 | ||
- | fi | ||
- | date=`date +%Y%m%d-%H%M%S` | ||
- | for i in " | ||
- | do | ||
- | echo Backed up $i to $i.$date | ||
- | cp $i $i.$date | ||
- | done | ||
- | } | ||
- | |||
- | |||
- | # Output a text file with line numbers | ||
- | # | ||
- | # Overriding the newline-to-tab conversion (with the -d flag) and | ||
- | # replacing newlines with TAB-newline, | ||
- | # but indenting it. sed = will number the lines in the output,· | ||
- | # and the -s switch on paste will restore our whitespace keeping· | ||
- | # the line number justified to the left. | ||
- | filecatno() { | ||
- | if [ $# == 0 ]; then | ||
- | echo "No filename provided." | ||
- | else | ||
- | sed = " | ||
- | fi | ||
- | } | ||
- | |||
- | |||
- | # Show all strings (ASCII & Unicode) in a file. | ||
- | filecatstr() { cat " | ||
- | |||
- | |||
- | # Changes the extension of all of the specified files in a directory. | ||
- | # It takes two arguments, first the original extension, | ||
- | # then the extension to replace it with.· | ||
- | # For example | ||
- | # | ||
- | filechgext() { | ||
- | for file in *.$1 ; do mv " | ||
- | } | ||
- | |||
- | |||
- | # Find a file with pattern $1 in name and Execute $2 on it: | ||
- | fileexec() {· | ||
- | find . -type f -iname ' | ||
- | -exec ${2:-file} {} \; ; } | ||
- | |||
- | |||
- | # Fast find, using globstar. | ||
- | filefind() { | ||
- | ls -ltr **/$@ | ||
- | } | ||
- | |||
- | |||
- | # Swap 2 filenames around, if they exist. | ||
- | fileswap() { | ||
- | local TMPFILE=tmp.$$ | ||
- | |||
- | [ $# -ne 2 ] && echo " | ||
- | # [ $# -ne 2 ] && echo " | ||
- | [ ! -e $1 ] && echo " | ||
- | [ ! -e $2 ] && echo " | ||
- | |||
- | mv " | ||
- | mv " | ||
- | mv $TMPFILE " | ||
- | } | ||
- | |||
- | |||
- | # Moves file to ~/.Trash (use instead of rm). | ||
- | filetrash() { | ||
- | if [ $# -eq 0 ]; then | ||
- | echo Usage: filetrash FILE... | ||
- | return 1 | ||
- | fi | ||
- | local DATE=$(date +%Y%m%d) | ||
- | [ -d " | ||
- | for FILE in " | ||
- | do | ||
- | mv " | ||
- | echo " | ||
- | done | ||
- | } | ||
- | |||
- | |||
- | # Overwrite a file with zeroes. | ||
- | filezero() { | ||
- | case " | ||
- | "" | ||
- | return -1; | ||
- | esac | ||
- | filesize=`wc -c " | ||
- | dd if=/ | ||
- | } | ||
- | |||
- | | ||
- | # | ||
- | # Firewall functions. | ||
- | # | ||
- | | ||
- | # Ban IP | ||
- | ban() { | ||
- | if [ "`id -u`" == " | ||
- | iptables -A INPUT -s $1 -j DROP | ||
- | else | ||
- | sudo iptables -A INPUT -s $1 -j DROP | ||
- | fi | ||
- | } | ||
- | | ||
- | | ||
- | # | ||
- | # Grep Find Search functions. | ||
- | # | ||
- | |||
- | # Find a file with a pattern in name: | ||
- | ff() { find . -type f -iname ' | ||
- | |||
- | # Find a file whose name starts with a given string. | ||
- | ffs() { / | ||
- | |||
- | # Find a file whose name ends with a given string. | ||
- | ffe() { / | ||
- | |||
- | # Find files larger than a certain size (in bytes). | ||
- | ffbigger() { find . -type f 2>/ | ||
- | |||
- | # Find a pattern in a set of files and highlight them: | ||
- | # (needs a recent version of egrep). | ||
- | findstr() { | ||
- | OPTIND=1 | ||
- | local mycase="" | ||
- | local usage=" | ||
- | Usage: grepstr [-i] \" | ||
- | while getopts :it opt | ||
- | do | ||
- | case " | ||
- | i) mycase=" | ||
- | *) echo " | ||
- | esac | ||
- | done | ||
- | shift $(( $OPTIND - 1 )) | ||
- | if [ " | ||
- | echo " | ||
- | return; | ||
- | fi | ||
- | find . -type f -name " | ||
- | xargs -0 egrep --color=always -sn ${case} " | ||
- | } | ||
- | |||
- | # Search for a word in the Unix word list. | ||
- | word() { /bin/grep ^" | ||
- | |||
- | # Search for a word in the Unix word list that ends with the chars. | ||
- | wordstarts() { /bin/grep ^" | ||
- | |||
- | # Search for a word in the Unix word list that ends with the chars. | ||
- | wordends() { /bin/grep " | ||
- | |||
- | |||
- | # | ||
- | # Info functions. | ||
- | # | ||
- | |||
- | # Get current host related info. | ||
- | ii() { | ||
- | echo -e "\nYou are logged on ${BRed}$HOST" | ||
- | echo -e " | ||
- | echo -e " | ||
- | cut -d " " -f1 | sort | uniq | ||
- | echo -e " | ||
- | echo -e " | ||
- | echo -e " | ||
- | echo -e " | ||
- | echo -e " | ||
- | echo -e " | ||
- | echo | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # Misc functions. | ||
- | # | ||
- | |||
- | # Waits for the user to press a y or n. | ||
- | # | ||
- | # Example: | ||
- | # if ask "Kill process $pid < | ||
- | # then kill $sig $pid | ||
- | # fi | ||
- | ask() { | ||
- | echo -n " | ||
- | case " | ||
- | y*|Y*) return 0 ;; | ||
- | *) return 1 ;; | ||
- | esac | ||
- | } | ||
- | |||
- | |||
- | # Repeat n times command. | ||
- | # | ||
- | # Example: | ||
- | # | ||
- | repeat() { | ||
- | local i max | ||
- | max=$1; shift; | ||
- | for ((i=1; i <= max ; i++)); do # --> C-like syntax | ||
- | eval " | ||
- | done | ||
- | } | ||
- | |||
- | |||
- | # Do something very quietly. | ||
- | runquiet() { | ||
- | ( $@ ) >/ | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # Network functions. | ||
- | # | ||
- | |||
- | # myIP address | ||
- | ipall() { | ||
- | ifconfig lo | grep 'inet ' | sed -e 's/:/ /' | awk ' | ||
- | ifconfig em1 | grep 'inet ' | sed -e 's/:/ /' | awk ' | ||
- | ifconfig em1 | grep 'inet6 ' | sed -e 's/ / /' | awk ' | ||
- | ifconfig em2 | grep 'inet ' | sed -e 's/:/ /' | awk ' | ||
- | ifconfig em2 | grep 'inet6 ' | sed -e 's/ / /' | awk ' | ||
- | } | ||
- | |||
- | |||
- | # Get IP adress on ethernet. | ||
- | myip() { | ||
- | # MY_IP=$(/ | ||
- | MY_IP=$(/ | ||
- | sed -e s/addr://) | ||
- | echo ${MY_IP: | ||
- | } | ||
- | |||
- | |||
- | getip() { | ||
- | for each in $@; do | ||
- | echo $each | ||
- | echo " | ||
- | nslookup $each | grep Address: | grep -v '#' | ||
- | echo " | ||
- | ping -c1 -t1 $each | egrep -o ' | ||
- | done | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # Process functions. | ||
- | # | ||
- | |||
- | psnice() { | ||
- | if ! [ -z " | ||
- | # Take a parameter pid. | ||
- | ionice -c3 -p$1 ; renice -n 19 -p $1 | ||
- | else | ||
- | # If no parameter is nice the current pid (bash). | ||
- | ionice -c3 -p$$ ; renice -n 19 -p $$ | ||
- | fi | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # String functions. | ||
- | # | ||
- | |||
- | # substring word start [length] | ||
- | substring() { | ||
- | if [ $# -lt 2 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | fi | ||
- | if [ -z $3 ]; then | ||
- | echo ${1:$2} | ||
- | else | ||
- | echo ${1:$2:$3} | ||
- | fi | ||
- | } | ||
- | |||
- | |||
- | # Get length of string. | ||
- | strlen() { | ||
- | if [ $# -ne 1 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | fi | ||
- | echo ${#1} | ||
- | } | ||
- | |||
- | |||
- | # Convert string to upper-case. | ||
- | strupper() { | ||
- | if [ $# -lt 1 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | fi | ||
- | echo ${@^^} | ||
- | } | ||
- | |||
- | |||
- | # Convert string to lower-case. | ||
- | strlower() { | ||
- | if [ $# -lt 1 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | fi | ||
- | echo ${@,,} | ||
- | } | ||
- | |||
- | |||
- | # Replace part of string with another. | ||
- | strreplace() { | ||
- | if [ $# -ne 3 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | fi | ||
- | echo ${1/$2/$3} | ||
- | } | ||
- | |||
- | |||
- | # Replace all parts of a string with another. | ||
- | strreplaceall() { | ||
- | if [ $# -ne 3 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | fi | ||
- | echo ${1//$2/$3} | ||
- | } | ||
- | |||
- | |||
- | # Find index of specified string. | ||
- | strindex() { | ||
- | if [ $# -ne 2 ]; then | ||
- | echo " | ||
- | return 1 | ||
- | fi | ||
- | expr index $1 $2 | ||
- | } | ||
- | |||
- | |||
- | strquote() { echo " | ||
- | |||
- | |||
- | # Surround string with whatever is given as 2nd param. | ||
- | # | ||
- | # Example: | ||
- | # | ||
- | # | ||
- | # | ||
- | strsurround() { | ||
- | if [ $# -ne 2 ]; then | ||
- | echo Usage: surround string surround-with e.g. strsurround hello \\\" | ||
- | return 1 | ||
- | fi | ||
- | echo $1 | sed " | ||
- | } | ||
- | |||
- | |||
- | # | ||
- | # Text functions. | ||
- | # | ||
- | |||
- | # Truncate lines longer than 80 characters (for use in pipes). | ||
- | #alias cut80='/ | ||
- | #cut80() { echo " | ||
- | |||
- | # Surround lines with quotes (useful in pipes). | ||
- | quote() { echo " | ||
- | |||
- | |||
- | # | ||
- | # USB functions. | ||
- | # | ||
- | |||
- | # Need to figure out which drive your usb is assigned? Functions work the same way as an alias. Simply copy the line into your .profile/ | ||
- | myusb() { usb_array=(); | ||
- | </ |
bash/functions.1589634045.txt.gz · Last modified: 2020/07/15 09:30 (external edit)