Added alias to cheat at DCSS

This commit is contained in:
2017-12-13 19:36:04 -05:00
parent 75872b4067
commit b1b0a27192

View File

@@ -44,6 +44,7 @@ alias openips='nmap -v -sn -n 192.168.0.0/24 -oG - | grep Down'
# webthis - create asimple HTTP server in the current directory serving on port 8000
alias webthis='python -m SimpleHTTPServer 8000'
# For cheating at DCSS (using git)
alias crawlrestore='git reset --hard && git clean -fd'
# For cheating at DCSS
alias crawlsave='if [[ -f crawlsave.tgz ]]; then rm -f crawlsave.tgz; fi && tar cvzf crawlsave.tgz .crawl && crawl-tiles'
alias crawlrestore='rm -rf ~/.crawl && tar xvf ~/crawlsave.tgz -C ~/ && crawl-tiles'