bash:functions:my_functions
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:functions:my_functions [2020/05/16 13:01] – peter | bash:functions:my_functions [2022/09/18 12:42] (current) – peter | ||
---|---|---|---|
Line 80: | Line 80: | ||
# *.7z) 7za x " | # *.7z) 7za x " | ||
*.7z) 7z x " | *.7z) 7z x " | ||
+ | *.arj|*.cab|*.chm|*.dmg|*.iso|*.lzh|*.msi|*.udf|*.wim|*.xar) 7z x " | ||
*) echo "' | *) echo "' | ||
esac | esac | ||
Line 115: | Line 116: | ||
# Create a ZIP archive of a file or folder. | # Create a ZIP archive of a file or folder. | ||
makezip() { zip -r " | 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`; | ||
+ | } | ||
Line 124: | Line 137: | ||
calc() { | calc() { | ||
echo " | echo " | ||
+ | # bc -l <<< | ||
} | } | ||
Line 178: | Line 192: | ||
# Directory functions. | # 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. | # Jumps to a directory at any level below using globstar. | ||
Line 186: | Line 216: | ||
else | else | ||
cd **/$@ | cd **/$@ | ||
+ | fi | ||
+ | } | ||
+ | |||
+ | |||
+ | # mkdir, follow it with cd to that directory. | ||
+ | function mkcd { | ||
+ | if [ -n " | ||
+ | then | ||
+ | mkdir " | ||
+ | cd " | ||
+ | else | ||
+ | echo NO | ||
fi | fi | ||
} | } | ||
Line 239: | Line 281: | ||
done | 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; } | ||
Line 316: | Line 394: | ||
for file in *.$1 ; do mv " | 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 | ||
+ | } | ||
+ | |||
+ | # | ||
Line 370: | Line 511: | ||
dd if=/ | 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 > " | ||
+ | } | ||
+ | |||
| | ||
Line 424: | Line 588: | ||
xargs -0 egrep --color=always -sn ${case} " | xargs -0 egrep --color=always -sn ${case} " | ||
} | } | ||
+ | |||
# Search for a word in the Unix word list. | # Search for a word in the Unix word list. | ||
word() { /bin/grep ^" | word() { /bin/grep ^" | ||
+ | | ||
# Search for a word in the Unix word list that ends with the chars. | # Search for a word in the Unix word list that ends with the chars. | ||
wordstarts() { /bin/grep ^" | wordstarts() { /bin/grep ^" | ||
+ | | ||
# Search for a word in the Unix word list that ends with the chars. | # Search for a word in the Unix word list that ends with the chars. | ||
wordends() { /bin/grep " | 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, | ||
+ | } | ||
Line 452: | Line 747: | ||
echo -e " | echo -e " | ||
echo | echo | ||
+ | } | ||
+ | |||
+ | |||
+ | function info() { | ||
+ | printf " | ||
+ | #printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
+ | printf " | ||
} | } | ||
Line 458: | Line 769: | ||
# Misc functions. | # Misc functions. | ||
# | # | ||
+ | |||
+ | |||
+ | function add-line-numbers { | ||
+ | awk ' | ||
+ | } | ||
+ | |||
# Waits for the user to press a y or n. | # Waits for the user to press a y or n. | ||
Line 471: | Line 788: | ||
*) return 1 ;; | *) return 1 ;; | ||
esac | 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}' ; | ||
} | } | ||
Line 490: | Line 815: | ||
runquiet() { | 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}' | ||
} | } | ||
Line 508: | Line 853: | ||
# Get IP adress on ethernet. | # Get IP adress on ethernet. | ||
- | myip() { | + | #myip() { |
- | # | + | # MY_IP=$(/ |
- | | + | # sed -e s/ |
- | sed -e s/ | + | # echo ${MY_IP: |
- | echo ${MY_IP: | + | #} |
- | } | + | |
Line 524: | Line 868: | ||
ping -c1 -t1 $each | egrep -o ' | ping -c1 -t1 $each | egrep -o ' | ||
done | 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 | ||
} | } | ||
Line 539: | Line 918: | ||
ionice -c3 -p$$ ; renice -n 19 -p $$ | ionice -c3 -p$$ ; renice -n 19 -p $$ | ||
fi | 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 | ||
} | } | ||
Line 648: | Line 1078: | ||
# Surround lines with quotes (useful in pipes). | # Surround lines with quotes (useful in pipes). | ||
quote() { echo " | 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 | ||
+ | } | ||
Line 655: | Line 1169: | ||
# 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/ | # 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=(); | + | #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=(); | ||
+ | | ||
+ | |||
+ | |||
+ | |||
+ | # | ||
+ | # URL Encode functions. | ||
+ | # | ||
+ | |||
+ | # Transform the arguments into a valid url querystring | ||
+ | urlencode() | ||
+ | { | ||
+ | local args=" | ||
+ | jq -nr --arg v " | ||
+ | } | ||
</ | </ |
bash/functions/my_functions.1589634093.txt.gz · Last modified: 2020/07/15 09:30 (external edit)