Skip to content

Instantly share code, notes, and snippets.

View ConnorBaxter's full-sized avatar

Connor Baxter ConnorBaxter

View GitHub Profile
@ConnorBaxter
ConnorBaxter / sharptemp.sh
Created May 18, 2022 21:32
Create a new dotnet project and add some useful stuff
#!/usr/bin/env bash
set -Eeuo pipefail
trap cleanup SIGINT SIGTERM ERR EXIT
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P)
usage() {
cat <<EOF
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p project_name [args ...]
sudo apt-get update
# For Debian Buster
sudo apt-get install -y wget openssh-server screen minicom terminator
@ConnorBaxter
ConnorBaxter / basic_lin_install.sh
Last active February 21, 2023 23:46
Install useful linux tools
# Make sure system is fully up to date
sudo apt-get -y update
# Most important
sudo apt-get install -y curl
sudo apt-get install -y wget
sudo apt-get install -y tree
sudo apt-get install -y zip
sudo apt-get install -y unzip
sudo apt-get install -y tar