added bin and src folders, moved donut to the end
This commit is contained in:
+18
-11
@@ -9,6 +9,9 @@
|
|||||||
# CHANGE LOG
|
# CHANGE LOG
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# 09-09-2023: init
|
# 09-09-2023: init
|
||||||
|
# 04-11-2024: added mkdir for bin and src
|
||||||
|
# moved some clones up a little bit
|
||||||
|
# put binaries in local bin folder
|
||||||
#
|
#
|
||||||
# ==============================================================================
|
# ==============================================================================
|
||||||
|
|
||||||
@@ -30,32 +33,36 @@ brew install onefetch
|
|||||||
brew install rust
|
brew install rust
|
||||||
brew install tmux
|
brew install tmux
|
||||||
brew install wireshark
|
brew install wireshark
|
||||||
|
brew install nmap
|
||||||
|
|
||||||
|
mkdir ~/bin
|
||||||
echo "pull up the github PAT"
|
mkdir ~/src
|
||||||
|
mkdir ~/Documents/work
|
||||||
cd ~/Documents/
|
cd ~/Documents/work
|
||||||
mkdir work
|
|
||||||
cd work
|
|
||||||
|
|
||||||
git clone https://github.com/alexander-the-alright/dotfiles
|
git clone https://github.com/alexander-the-alright/dotfiles
|
||||||
cp dotfiles/mac/.zshrc ~/
|
cp dotfiles/mac/.zshrc ~/
|
||||||
cp dotfiles/mac/.vimrc ~/
|
cp dotfiles/mac/.vimrc ~/
|
||||||
cp -r dotfiles/mac/.vim ~/
|
cp -r dotfiles/mac/.vim ~/
|
||||||
|
|
||||||
|
cp dotfiles/mac/mes.as
|
||||||
|
cp dotfiles/mac/dos.sh
|
||||||
|
|
||||||
|
git clone https://github.com/alexander-the-alright/soary
|
||||||
|
|
||||||
|
git clone https://github.com/alexander-the-alright/TDM
|
||||||
|
go build TDM/tdm.go
|
||||||
|
mv tdm ~/bin
|
||||||
|
|
||||||
/usr/local/bin/gcc-13 -o donut dotfiles/mac/donut.c > /dev/null 2> errout
|
/usr/local/bin/gcc-13 -o donut dotfiles/mac/donut.c > /dev/null 2> errout
|
||||||
|
|
||||||
if [ -s errout ]; then
|
if [ -s errout ]; then
|
||||||
rm errout
|
rm errout
|
||||||
echo "gcc failed"
|
echo "gcc failed"
|
||||||
else
|
else
|
||||||
mv donut ~/
|
mv donut ~/bin
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
git clone https://github.com/alexander-the-alright/TDM
|
|
||||||
go build TDM/tdm.go
|
|
||||||
mv tdm ~/
|
|
||||||
|
|
||||||
git clone https://github.com/alexander-the-alright/soary
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user