Migrating functions to separate source file. Commented functions will be removed on next commit
This commit is contained in:
199
.bash_aliases
199
.bash_aliases
@@ -108,43 +108,20 @@ alias mnts='mount | column -t'
|
||||
# The history command but shorter
|
||||
alias h='history'
|
||||
|
||||
|
||||
##### moved to .bash_docker will be removed in next commit #####
|
||||
|
||||
## Lazy docker composing. Set the variable somewhere.
|
||||
#alias doco="$DOCKER_COMPOSE_COMMAND"
|
||||
#alias redoco="$DOCKER_COMPOSE_COMMAND down && $DOCKER_COMPOSE_COMMAND up -d"
|
||||
#alias redog="$DOCKER_COMPOSE_COMMAND down && $DOCKER_COMPOSE_COMMAND up -d; $DOCKER_COMPOSE_COMMAND logs -f"
|
||||
#alias dolog="$DOCKER_COMPOSE_COMMAND up -d; $DOCKER_COMPOSE_COMMAND logs -f"
|
||||
#alias watchtower="docker run -d --restart unless-stopped --name 'watch-$(date +%H%M)' -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower "
|
||||
#alias watchonce="docker run -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --run-once"
|
||||
#alias onetower="docker run --rm -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --run-once"
|
||||
#alias docport='docker container ls --format "table {{.ID}}\t{{.Names}}\t{{.Ports}}" -a'
|
||||
## Regain all that space taken up by projects you abandoned
|
||||
#alias docprune='echo "Pruning images"; docker image prune -f && echo "Pruning networks"; docker network prune -f && echo "Pruning containers"; docker container prune -f && echo "Pruning Volumes"; docker volume prune -f'
|
||||
## Send things instantly to a pastebin. Pipe other commands into this to share their output.
|
||||
#alias bin='nc termbin.com 9999'
|
||||
## Quicker Docker exec
|
||||
#alias dex='docker exec'
|
||||
#alias dps="docker ps --format 'CONTAINER ID: {{.ID}}\nIMAGE: {{.Image}}\nCOMMAND: {{.Command}}\nCREATED: {{.CreatedAt}}\nSTATUS: {{.Status}}\nPORTS: {{.Ports}}\nNAMES: {{.Names}}\n'|cat"
|
||||
#alias lzd='docker run --rm -it -v /var/run/docker.sock:/var/run/docker.sock -v ~/lzd:/.config/jesseduffield/lazydocker lazyteam/lazydocker'
|
||||
#alias doctime="docker ps --format 'CONTAINER NAME: {{.Names}}\nUPTIME: {{.Status}}'|cat"
|
||||
#alias glance='docker run --rm -e TZ="${TZ}" -v /var/run/docker.sock:/var/run/docker.sock:ro -v /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro --pid host --network host -it nicolargo/glances:latest-full'
|
||||
#alias ytdlp='docker run --rm -v "/nasty/ytdl:/media" -it jauderho/yt-dlp:latest '
|
||||
# Misc
|
||||
# Get the weather. Put your location after the command
|
||||
alias wttr='ansiweather -u imperial -s false -l'
|
||||
#Read the fucking manual
|
||||
rtfm() { help $@ || info $@ || man $@ || curl "http://cheat.sh/$@"; }
|
||||
# Get your public IP
|
||||
extip(){ ip=$(curl -s http://api.ipify.org);
|
||||
echo "Public IP address is $ip"
|
||||
}
|
||||
# Cheatsheet for linux commands
|
||||
ch() { curl "http://cheat.sh/$@"; }
|
||||
# You can go to noti.toad.city and generate your own code to get browser notifications. It's all explained there. You'll need to modify this value
|
||||
notica() { curl --data "d:$*" "https://noti.toad.city/?VFvu53" ; }
|
||||
|
||||
##Read the fucking manual
|
||||
#rtfm() { help $@ || info $@ || man $@ || curl "http://cheat.sh/$@"; }
|
||||
## Get your public IP
|
||||
#extip(){ ip=$(curl -s http://api.ipify.org);
|
||||
# echo "Public IP address is $ip"
|
||||
#}
|
||||
## Cheatsheet for linux commands
|
||||
#ch() { curl "http://cheat.sh/$@"; }
|
||||
## You can go to noti.toad.city and generate your own code to get browser notifications. It's all explained there. You'll need to modify this value
|
||||
#notica() { curl --data "d:$*" "https://noti.toad.city/?VFvu53" ; }
|
||||
#
|
||||
# A quick lil speedyboi
|
||||
alias speedTest='curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python3 -'
|
||||
# If you're runnng my exact mastodon setup, this will be useful
|
||||
@@ -154,81 +131,81 @@ alias hackingtool='docker run -it --net=host --security-opt seccomp=unconfined -
|
||||
# Do you need to reboot? Find out here!
|
||||
alias needrs='[ -f /var/run/reboot-required ] && echo "You need to reboot"'
|
||||
alias gitgraph='git log --graph --oneline --decorate'
|
||||
# Countdown Timer
|
||||
countdown() {
|
||||
start="$(( $(date '+%s') + $1))"
|
||||
while [ $start -ge $(date +%s) ]; do
|
||||
time="$(( $start - $(date +%s) ))"
|
||||
printf '%s\r' "$(date -u -d "@$time" +%H:%M:%S)"
|
||||
sleep 0.1
|
||||
done
|
||||
}
|
||||
# Random quote to avoid making useful commit messages
|
||||
function rgcm() {
|
||||
api="https://whatthecommit.com/index.txt"
|
||||
message=$(curl -s $api)
|
||||
if [[ -z $message ]]; then
|
||||
echo "Error: Failed to retrieve a random commit message"
|
||||
return 1
|
||||
fi
|
||||
git add .
|
||||
git commit -m "$message"
|
||||
echo "Git commit submitted with message: $message"
|
||||
}
|
||||
function cntdn() {
|
||||
local count=$1
|
||||
while [ $count -gt 0 ]; do
|
||||
echo -en "\n$count... "
|
||||
if [ $count -eq 3 ]; then
|
||||
echo "You've still got a few seconds to live it up before your time runs out!"
|
||||
elif [ $count -eq 2 ]; then
|
||||
echo "Tick-tock, tick-tock, time's running out!"
|
||||
elif [ $count -eq 1 ]; then
|
||||
echo "You had a good run, but it's time to face the music!"
|
||||
fi
|
||||
sleep 1
|
||||
((count--))
|
||||
done
|
||||
echo "Time's up!"
|
||||
}
|
||||
|
||||
function ramdisk() {
|
||||
if [ -z "$1" ]; then
|
||||
echo "Error: Ramdisk size not specified."
|
||||
return 1
|
||||
fi
|
||||
if [ ! -d "$HOME/ramdown" ]; then
|
||||
mkdir "$HOME/ramdown"
|
||||
fi
|
||||
|
||||
size="$1"
|
||||
|
||||
sudo mount -t tmpfs -o size="$size" tmpfs "$HOME/ramdown"
|
||||
}
|
||||
|
||||
ipin() {
|
||||
local ip=$1
|
||||
local endpoint="https://ipinfo.io"
|
||||
# Append IP to the endpoint if provided
|
||||
if [[ -n $ip ]]; then
|
||||
endpoint+="/$ip"
|
||||
fi
|
||||
endpoint+="/json?token=4ea2457429bf23"
|
||||
# Make the API call and prettify the JSON response
|
||||
curl -s "$endpoint" | jq .
|
||||
}
|
||||
# Tere function
|
||||
tere() {
|
||||
local result=$(command tere "$@")
|
||||
[ -n "$result" ] && cd -- "$result"
|
||||
}
|
||||
# Compress files. Like the name says.
|
||||
function compress_files() {
|
||||
if [ -z "$1" ]; then
|
||||
echo "Usage: compress_files <archive_name.zip> <file1> <file2> ..."
|
||||
else
|
||||
zip -r "$1" "${@:2}"
|
||||
fi
|
||||
}
|
||||
# See open ports
|
||||
## Countdown Timer
|
||||
#countdown() {
|
||||
# start="$(( $(date '+%s') + $1))"
|
||||
# while [ $start -ge $(date +%s) ]; do
|
||||
# time="$(( $start - $(date +%s) ))"
|
||||
# printf '%s\r' "$(date -u -d "@$time" +%H:%M:%S)"
|
||||
# sleep 0.1
|
||||
# done
|
||||
#}
|
||||
## Random quote to avoid making useful commit messages
|
||||
#function rgcm() {
|
||||
# api="https://whatthecommit.com/index.txt"
|
||||
# message=$(curl -s $api)
|
||||
# if [[ -z $message ]]; then
|
||||
# echo "Error: Failed to retrieve a random commit message"
|
||||
# return 1
|
||||
# fi
|
||||
# git add .
|
||||
# git commit -m "$message"
|
||||
# echo "Git commit submitted with message: $message"
|
||||
#}
|
||||
#function cntdn() {
|
||||
# local count=$1
|
||||
# while [ $count -gt 0 ]; do
|
||||
# echo -en "\n$count... "
|
||||
# if [ $count -eq 3 ]; then
|
||||
# echo "You've still got a few seconds to live it up before your time runs out!"
|
||||
# elif [ $count -eq 2 ]; then
|
||||
# echo "Tick-tock, tick-tock, time's running out!"
|
||||
# elif [ $count -eq 1 ]; then
|
||||
# echo "You had a good run, but it's time to face the music!"
|
||||
# fi
|
||||
# sleep 1
|
||||
# ((count--))
|
||||
# done
|
||||
# echo "Time's up!"
|
||||
#}
|
||||
#
|
||||
#function ramdisk() {
|
||||
# if [ -z "$1" ]; then
|
||||
# echo "Error: Ramdisk size not specified."
|
||||
# return 1
|
||||
# fi
|
||||
# if [ ! -d "$HOME/ramdown" ]; then
|
||||
# mkdir "$HOME/ramdown"
|
||||
# fi
|
||||
#
|
||||
# size="$1"
|
||||
#
|
||||
# sudo mount -t tmpfs -o size="$size" tmpfs "$HOME/ramdown"
|
||||
#}
|
||||
#
|
||||
#ipin() {
|
||||
# local ip=$1
|
||||
# local endpoint="https://ipinfo.io"
|
||||
# # Append IP to the endpoint if provided
|
||||
# if [[ -n $ip ]]; then
|
||||
# endpoint+="/$ip"
|
||||
# fi
|
||||
# endpoint+="/json?token=4ea2457429bf23"
|
||||
# # Make the API call and prettify the JSON response
|
||||
# curl -s "$endpoint" | jq .
|
||||
#}
|
||||
## Tere function
|
||||
#tere() {
|
||||
# local result=$(command tere "$@")
|
||||
# [ -n "$result" ] && cd -- "$result"
|
||||
#}
|
||||
## Compress files. Like the name says.
|
||||
#function compress_files() {
|
||||
# if [ -z "$1" ]; then
|
||||
# echo "Usage: compress_files <archive_name.zip> <file1> <file2> ..."
|
||||
# else
|
||||
# zip -r "$1" "${@:2}"
|
||||
# fi
|
||||
#}
|
||||
## See open ports
|
||||
alias ports='netstat -tuln '
|
||||
|
Reference in New Issue
Block a user