Last active
December 30, 2023 16:58
-
-
Save eat-sleep-code/93b1d441e3035293d21699d4fea263b7 to your computer and use it in GitHub Desktop.
Bash aliases to handle common tasks on a Raspberry Pi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias health='/bin/vcgencmd measure_temp; echo "----------"; free --mega; echo "----------"; df -Bm' | |
alias shutdown='sudo shutdown now' | |
alias update='sudo apt update && sudo apt full-upgrade -y && sudo apt autoremove -y && sudo apt autoclean' | |
alias update-npm='sudo npm install npm -g && sudo npm update -g && sudo npm update' | |
#alias microscope='ffplay -f v4l2 -video_size 1280x720 -i /dev/video0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment