bash:functions:my_functions
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
bash:functions:my_functions [2020/05/16 13:01] – created peter | bash:functions:my_functions [2022/09/18 12:42] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== BASH - Functions - My Functions ====== | ====== BASH - Functions - My Functions ====== | ||
+ | <file bash / | ||
+ | # | ||
+ | # Archiving functions. | ||
+ | # | ||
+ | |||
+ | # Creates an archive. | ||
+ | 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 " | ||
+ | *.arj|*.cab|*.chm|*.dmg|*.iso|*.lzh|*.msi|*.udf|*.wim|*.xar) 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 " | ||
+ | |||
+ | |||
+ | # | ||
+ | # Backup functions. | ||
+ | # | ||
+ | |||
+ | # Copy a file to the current directory with today’s date automatically appended to the end. | ||
+ | # Usage: | ||
+ | bu() | ||
+ | { | ||
+ | cp “$1” “$1”.backup-`date +%H%M%S_%y%m%d`; | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # Calculator functions. | ||
+ | # | ||
+ | |||
+ | # Calculate an expression e.g. calc 1+1. | ||
+ | calc() { | ||
+ | echo " | ||
+ | # bc -l <<< | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # 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. | ||
+ | # | ||
+ | |||
+ | # CHMOD _D_irectory _R_ecursivly | ||
+ | chmoddr() { | ||
+ | if [ -d " | ||
+ | echo " | ||
+ | | ||
+ | elif [ -d " | ||
+ | find $2 -type d -print0 | xargs -0 chmod $1; | ||
+ | fi | ||
+ | } | ||
+ | |||
+ | |||
+ | function dus () { | ||
+ | du --max-depth=0 -k * | sort -n | awk '{ if($1> | ||
+ | } | ||
+ | |||
+ | |||
+ | # Jumps to a directory at any level below using globstar. | ||
+ | jd() { | ||
+ | if [ -z $1 ]; then | ||
+ | echo " | ||
+ | return 1 | ||
+ | else | ||
+ | cd **/$@ | ||
+ | fi | ||
+ | } | ||
+ | |||
+ | |||
+ | # mkdir, follow it with cd to that directory. | ||
+ | function mkcd { | ||
+ | if [ -n " | ||
+ | then | ||
+ | mkdir " | ||
+ | cd " | ||
+ | else | ||
+ | echo NO | ||
+ | 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 | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # Docker functions. | ||
+ | # | ||
+ | |||
+ | function dockershellhere() { | ||
+ | dirname=${PWD## | ||
+ | docker run --rm -it --entrypoint=/ | ||
+ | } | ||
+ | |||
+ | |||
+ | function dockershellshhere() { | ||
+ | dirname=${PWD## | ||
+ | docker run --rm -it --entrypoint=/ | ||
+ | } | ||
+ | |||
+ | |||
+ | # Listing Docker Tags. | ||
+ | # Example: | ||
+ | dockertags () { | ||
+ | local image=" | ||
+ | |||
+ | wget -q https:// | ||
+ | | tr -d ' | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | # Bash into Docker container. | ||
+ | dockerbash() { docker exec -it $@ bash; } | ||
+ | dockersh() { docker exec -it $@ sh; } | ||
+ | |||
+ | # Bash into Kubernetes Pod. | ||
+ | kubsh() { kubectl exec -it $@ -- /bin/sh; } | ||
+ | kubbash() { kubectl exec -it $@ -- /bin/bash; } | ||
+ | |||
+ | |||
+ | # | ||
+ | # 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 " | ||
+ | } | ||
+ | |||
+ | |||
+ | # Count the file arguments matching the file operator | ||
+ | # Synopsys: | ||
+ | # count_files operator FILE [...] | ||
+ | # Arguments: | ||
+ | # $1: The file operator | ||
+ | # | ||
+ | # -a FILE True if file exists. | ||
+ | # -b FILE True if file is block special. | ||
+ | # -c FILE True if file is character special. | ||
+ | # -d FILE True if file is a directory. | ||
+ | # -e FILE True if file exists. | ||
+ | # -f FILE True if file exists and is a regular file. | ||
+ | # -g FILE True if file is set-group-id. | ||
+ | # -h FILE True if file is a symbolic link. | ||
+ | # -L FILE True if file is a symbolic link. | ||
+ | # -k FILE True if file has its `sticky' | ||
+ | # -p FILE True if file is a named pipe. | ||
+ | # -r FILE True if file is readable by you. | ||
+ | # -s FILE True if file exists and is not empty. | ||
+ | # -S FILE True if file is a socket. | ||
+ | # -t FD True if FD is opened on a terminal. | ||
+ | # -u FILE True if the file is set-user-id. | ||
+ | # -w FILE True if the file is writable by you. | ||
+ | # -x FILE True if the file is executable by you. | ||
+ | # -O FILE True if the file is effectively owned by you. | ||
+ | # -G FILE True if the file is effectively owned by your group. | ||
+ | # -N FILE True if the file has been modified since it was last read. | ||
+ | # $@: The files arguments | ||
+ | # | ||
+ | # Output: | ||
+ | # The number of matching files. | ||
+ | # | ||
+ | # Return: | ||
+ | # 1: Unknown file operator. | ||
+ | # | ||
+ | # Example usages: | ||
+ | # | ||
+ | # | ||
+ | filecountbytype() | ||
+ | { | ||
+ | operator=$1 | ||
+ | shift | ||
+ | case $operator in | ||
+ | -[abcdefghLkprsStuwxOGN]) | ||
+ | for arg; do | ||
+ | # If file is not of required type. | ||
+ | if ! test " | ||
+ | # Shift it out. | ||
+ | shift | ||
+ | fi | ||
+ | done | ||
+ | echo $# | ||
+ | ;; | ||
+ | *) | ||
+ | printf ' | ||
+ | return 1 | ||
+ | ;; | ||
+ | esac | ||
+ | } | ||
+ | |||
+ | # | ||
+ | |||
+ | |||
+ | # 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=/ | ||
+ | } | ||
+ | |||
+ | |||
+ | # Check a JSON file. | ||
+ | # usage: json file.json | ||
+ | # If all is well, it will print the JSON file to the screen. | ||
+ | # If there is an error in the file, the error is printed along with the offending line number. | ||
+ | function json() { | ||
+ | cat " | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | # Returns one random line from the file specified as first parameter. | ||
+ | function fileraffle() { | ||
+ | head -$((${RANDOM} % `wc -l < $1` + 1)) $1 | tail -1 | ||
+ | } | ||
+ | |||
+ | |||
+ | # Use null to zero/create a file. | ||
+ | function touchf() { | ||
+ | [[ $# -gt 0 ]] && cat /dev/null > " | ||
+ | } | ||
+ | |||
+ | |||
+ | | ||
+ | # | ||
+ | # 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 " | ||
+ | |||
+ | |||
+ | #wordsall() { /bin/grep " | ||
+ | #wordsall() { /bin/grep " | ||
+ | words() { /bin/grep ^" | ||
+ | |||
+ | |||
+ | # Splits a word into separate letter combinations. | ||
+ | wordc(){ | ||
+ | combos () { | ||
+ | local word=$1 | ||
+ | local len=${# | ||
+ | # local first=${word: | ||
+ | # echo " | ||
+ | for ((i=1; i <= len; i++ )); do | ||
+ | local first=${word: | ||
+ | echo " | ||
+ | for ((j=1; i+j <= len; j++ )); do | ||
+ | echo " | ||
+ | done | ||
+ | done | ||
+ | } | ||
+ | combos $1 | ||
+ | } | ||
+ | | ||
+ | | ||
+ | |||
+ | # Splits a word into separate letter permutations. | ||
+ | wordp() { | ||
+ | function permutate { | ||
+ | if [ " | ||
+ | echo " | ||
+ | # /bin/grep ^" | ||
+ | # /bin/grep ^" | ||
+ | # echo " | ||
+ | # echo " | ||
+ | else | ||
+ | for i in $(seq 0 $((${# | ||
+ | pre=" | ||
+ | seg1=" | ||
+ | seg2=" | ||
+ | seg=" | ||
+ | permutate " | ||
+ | done | ||
+ | fi | ||
+ | } | ||
+ | |||
+ | #permutate $@ | ||
+ | permutate $1 | ||
+ | } | ||
+ | |||
+ | |||
+ | # Usage: | ||
+ | wordd(){ | ||
+ | combos () { | ||
+ | local word=$1 | ||
+ | local len=${# | ||
+ | |||
+ | #for ((i=1; i < len; i++ )); do | ||
+ | # local first=${word: | ||
+ | #done | ||
+ | for ((i=0; i<=len; i++ )); do | ||
+ | for ((j=0; j<=len; j++ )); do | ||
+ | for ((w=1; w<=len; w++ )); do | ||
+ | #printf " | ||
+ | #echo " | ||
+ | local charsi=${word: | ||
+ | local charsj=${word: | ||
+ | if [[ $i != $j && $charsi != $charsj ]]; then | ||
+ | echo " | ||
+ | fi | ||
+ | #echo " | ||
+ | done | ||
+ | done | ||
+ | done | ||
+ | } | ||
+ | combos $1 | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | # TODO - DETERMINE WHAT THIS IS FOR...PERHAPS DELETE. | ||
+ | wordsx() { | ||
+ | w=" | ||
+ | sortedWord=`echo " | ||
+ | echo $sortedWords | ||
+ | |||
+ | while read line | ||
+ | do | ||
+ | sortedLine=`echo $line | grep -o . | sort | tr -d ' | ||
+ | if [ " | ||
+ | then | ||
+ | echo $line | ||
+ | fi | ||
+ | done < / | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # History functions. | ||
+ | # | ||
+ | | ||
+ | # | ||
+ | #{ | ||
+ | # history | awk ' | ||
+ | #} | ||
+ | | ||
+ | |||
+ | |||
+ | # Returns top 10 commands used in the history. | ||
+ | # Check alias candidates. | ||
+ | function hist10() { | ||
+ | history | \ | ||
+ | awk ' | ||
+ | | grep -v " | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # Image functions. | ||
+ | # | ||
+ | |||
+ | # Scrape images. | ||
+ | # Example: imagescrape https:// | ||
+ | imagescraoe() { | ||
+ | wget -nd -H -p -A jpg, | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # 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 | ||
+ | } | ||
+ | |||
+ | |||
+ | function info() { | ||
+ | printf " | ||
+ | #printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # Misc functions. | ||
+ | # | ||
+ | |||
+ | |||
+ | function add-line-numbers { | ||
+ | awk ' | ||
+ | } | ||
+ | |||
+ | |||
+ | # 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 | ||
+ | } | ||
+ | |||
+ | |||
+ | # Chops the 1st column. | ||
+ | # Example: ls -al | chop-first-column | ||
+ | function chop-first-column | ||
+ | { | ||
+ | awk '{for (i=2; i<NF; i++) printf $i " "; print $NF}' ; | ||
+ | } | ||
+ | |||
+ | |||
+ | # 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() { | ||
+ | ( $@ ) >/ | ||
+ | } | ||
+ | |||
+ | |||
+ | # Try to do something and give it 3 attempts for it to work. | ||
+ | # (ideal for backup scripts etc when you don’t want to be woken up or turn up to work the following morning to a failed job). | ||
+ | try3() { | ||
+ | $@ || $@ || $@ | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # Mouse functions. | ||
+ | # | ||
+ | |||
+ | # Get mouse cursor coordinates with xdotool | ||
+ | function getmousecoords() { | ||
+ | xdotool getmouselocation|awk \ | ||
+ | ' | ||
+ | sub(/ | ||
+ | print $1 " " $2}' | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # 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=$(/ | ||
+ | # 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 | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # Password functions. | ||
+ | # | ||
+ | |||
+ | # Random password generator (8 caractères par défaut) | ||
+ | genpasswd() { | ||
+ | date +%s | sha256sum | base64 | head -c$1 ;echo | ||
+ | } | ||
+ | |||
+ | |||
+ | randompw() { | ||
+ | cat / | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | # Random number generator. | ||
+ | rand() { | ||
+ | if [ -z " | ||
+ | then | ||
+ | range=4 | ||
+ | else | ||
+ | range=$1 # will error if argument is not a number | ||
+ | fi | ||
+ | local num | ||
+ | for ((i=0; | ||
+ | do | ||
+ | num=$num$((RANDOM%9)) | ||
+ | done | ||
+ | echo $num | ||
+ | # printf " | ||
+ | # echo | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # 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 | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | # Kill Processes. | ||
+ | # Example: | ||
+ | pskill () { | ||
+ | ps aux | grep $1 > /dev/null | ||
+ | mypid=$(pidof $1) | ||
+ | if [ " | ||
+ | kill -9 $(pidof $1) | ||
+ | if [[ " | ||
+ | echo "PID $mypid ($1) killed." | ||
+ | fi | ||
+ | else | ||
+ | echo "None killed." | ||
+ | fi | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | myuptime () { | ||
+ | uptime | awk '{ print " | ||
+ | return; | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # Programming functions. | ||
+ | # | ||
+ | |||
+ | # A quicker G++. | ||
+ | g++11() { | ||
+ | echo "g++ -std=c++11 -Wall -Werror ${1}.cpp -o $1"; | ||
+ | echo ""; | ||
+ | g++ -std=c++11 -Wall -Werror ${1}.cpp -o ${1}.o; | ||
+ | } | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | |||
+ | # | ||
+ | # Sound functions. | ||
+ | # | ||
+ | |||
+ | # Removes audio from a video. | ||
+ | # Example: soundremoveaudio input.mp4m output.mp4 | ||
+ | soundremoveaudio() { | ||
+ | ffmpeg -i $1 -vcodec copy -an $2 | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # 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 " | ||
+ | |||
+ | |||
+ | # Translate spaces in filenames into underscores. | ||
+ | spaces2underscores () | ||
+ | { | ||
+ | targetdir=" | ||
+ | if [ ! -z " | ||
+ | then | ||
+ | if [ -d " | ||
+ | then | ||
+ | oldpwd=$(pwd) | ||
+ | else | ||
+ | echo "Not a valid directory." | ||
+ | return 1 | ||
+ | fi | ||
+ | fi | ||
+ | read -n1 -p " | ||
+ | case ${REPLY} in | ||
+ | " | ||
+ | cd " | ||
+ | fncounter=0 | ||
+ | for fn in * | ||
+ | do | ||
+ | newfn=$(printf " | ||
+ | if [ " | ||
+ | then | ||
+ | mv " | ||
+ | | ||
+ | fi | ||
+ | done | ||
+ | cd " | ||
+ | echo " | ||
+ | echo | ||
+ | ;; | ||
+ | * ) | ||
+ | echo " | ||
+ | echo | ||
+ | return 0 | ||
+ | ;; | ||
+ | esac | ||
+ | unset targetdir oldpwd REPLY fncounter fn newfn | ||
+ | } | ||
+ | |||
+ | |||
+ | # Translate underscores in filenames into spaces.. | ||
+ | underscores2spaces () | ||
+ | { | ||
+ | targetdir=" | ||
+ | if [ ! -z " | ||
+ | then | ||
+ | if [ -d " | ||
+ | then | ||
+ | oldpwd=$(pwd) | ||
+ | else | ||
+ | echo "Not a valid directory." | ||
+ | return 1 | ||
+ | fi | ||
+ | fi | ||
+ | read -n1 -p " | ||
+ | case ${REPLY} in | ||
+ | " | ||
+ | cd " | ||
+ | | ||
+ | for fn in * | ||
+ | do | ||
+ | newfn=$(printf " | ||
+ | if [ " | ||
+ | then | ||
+ | mv " | ||
+ | | ||
+ | fi | ||
+ | done | ||
+ | cd " | ||
+ | echo " | ||
+ | echo | ||
+ | ;; | ||
+ | * ) | ||
+ | echo " | ||
+ | echo | ||
+ | | ||
+ | ;; | ||
+ | esac | ||
+ | unset targetdir oldpwd REPLY fncounter fn newfn | ||
+ | } | ||
+ | |||
+ | |||
+ | # | ||
+ | # 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=(); | ||
+ | |||
+ | |||
+ | # 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=(); | ||
+ | readlink -f D | cut -c 8) && for usb in " | ||
+ | |||
+ | |||
+ | |||
+ | # | ||
+ | # URL Encode functions. | ||
+ | # | ||
+ | |||
+ | # Transform the arguments into a valid url querystring | ||
+ | urlencode() | ||
+ | { | ||
+ | local args=" | ||
+ | jq -nr --arg v " | ||
+ | } | ||
+ | |||
+ | </ |
bash/functions/my_functions.1589634067.txt.gz · Last modified: 2020/07/15 09:30 (external edit)