# I have little regard for "best practices," the political correctness of the tech world
set -o vi
alias less="less -X"
alias dnf="dnf -y "
alias df="df -h "
alias le="cd /local/etc"
alias e="cd /etc"
alias esn="cd /etc/sysconfig/network-scripts"
alias ens="cd /etc/NetworkManager/system-connections"
alias etd="cd /etc/dhcp"
alias eo="cd /etc/openvpn"
alias ess="cd /etc/systemd/system"
alias en="cd /etc/NetworkManager"
alias vl="cd /var/log"
alias pu="pushd "
alias po="popd"
alias d="dirs -v"
alias pp="pushd || popd"
alias lo="lsof -n -i -P"
alias lsdir="ls -d */"
PS1="\h \D{%F %T} \w \$ "
alias lsof="lsof -i -n -P "
Subscribe to:
Post Comments (Atom)
Script to see network interface connection speed
cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1 network-speed ...
-
This script with it's two related configuration files worked on Raspberry Pi Raspbian Linux. What was always sketchy was the "dri...
-
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. #Warn ; Recommended for catching common errors. Send...
-
cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1 network-speed ...
No comments:
Post a Comment