81 lines
967 B
Bash
Executable File
81 lines
967 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# sort of automate updating some repos I like to track
|
|
|
|
fol=~/utils
|
|
|
|
cd $fol/flutter
|
|
git pull
|
|
|
|
cd $fol/ghidra
|
|
git pull
|
|
|
|
cd $fol/hashcat
|
|
git pull
|
|
|
|
cd $fol/icons/flat-remix
|
|
git pull
|
|
|
|
cd $fol/int0x80/1337-Noms-The-Hacker-Cookbook
|
|
git pull
|
|
|
|
cd $fol/int0x80/anti-forensics
|
|
git pull
|
|
|
|
cd $fol/int0x80/blog
|
|
git pull
|
|
|
|
cd $fol/int0x80/ctf-vm
|
|
git pull
|
|
|
|
cd $fol/int0x80/dotfiles
|
|
git pull
|
|
|
|
cd $fol/int0x80/githump
|
|
git pull
|
|
|
|
cd $fol/int0x80/iot-stuff
|
|
git pull
|
|
|
|
cd $fol/int0x80/killallthehumans
|
|
git pull
|
|
|
|
cd $fol/int0x80/notes
|
|
git pull
|
|
|
|
cd $fol/int0x80/Packt-Publishing-Free-Learning
|
|
git pull
|
|
|
|
cd $fol/int0x80/reversing
|
|
git pull
|
|
|
|
cd $fol/int0x80/SweetSecurity
|
|
git pull
|
|
|
|
cd $fol/int0x80/windows
|
|
git pull
|
|
|
|
cd $fol/keysniffer
|
|
git pull
|
|
|
|
cd $fol/kismet
|
|
git pull
|
|
|
|
cd $fol/MEGA-Instances
|
|
git pull
|
|
|
|
cd $fol/scripts-vermaden
|
|
git pull
|
|
|
|
cd $fol/sdtool
|
|
git pull
|
|
|
|
cd $fol/themes/flat-remix-gtk
|
|
git pull
|
|
|
|
cd $fol/themes/flat-remix-gnome
|
|
git pull
|
|
|
|
cd $fol/TrebleShot-Desktop
|
|
git pull
|