Adding mgp for tracking
A little auto-updater script for most used repos
This commit is contained in:
parent
903155e41f
commit
063875e7da
@ -15,6 +15,7 @@ rsync -$params /etc/default/tlp $dotfiles/etc/default
|
|||||||
rsync -$params /etc/default/tlp.rpmnew $dotfiles/etc/default
|
rsync -$params /etc/default/tlp.rpmnew $dotfiles/etc/default
|
||||||
|
|
||||||
rsync -$params ~/alltheconfigs.sh $dotfiles
|
rsync -$params ~/alltheconfigs.sh $dotfiles
|
||||||
|
rsync -$params ~/mgp $dotfiles
|
||||||
|
|
||||||
rsync -$params ~/.vim/vimrc $dotfiles/vimrc
|
rsync -$params ~/.vim/vimrc $dotfiles/vimrc
|
||||||
rsync -$params ~/.gvimrc $dotfiles/gvimrc
|
rsync -$params ~/.gvimrc $dotfiles/gvimrc
|
||||||
|
134
mgp
Executable file
134
mgp
Executable file
@ -0,0 +1,134 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# sort of automate updating some repos I like to track
|
||||||
|
|
||||||
|
fol=~/utils
|
||||||
|
|
||||||
|
cd $fol/adsorber
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/airgeddon
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/ansible/ansible-client
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/bitpocket
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/dnscrypt-server-docker
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/dots
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/explainshell
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/gitnex
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/HackDroid
|
||||||
|
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/john
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/johnny
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/keysniffer
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/kismet
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/MEGAcmd
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/megasync
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/no-more-secrets
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/ohmyzsh-dotfiles
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/openbox-config
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/pi-hole
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/Psychson
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/scripts-vermaden
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/sdtool
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/set
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/Signal-Android
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/themes/flat-remix-gtk
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/trackerjacker
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/TrebleShot-Desktop
|
||||||
|
git pull
|
||||||
|
|
||||||
|
cd $fol/veraPDF-corpus
|
||||||
|
git pull
|
Loading…
Reference in New Issue
Block a user