Add ability to assemble shellcode.

This commit is contained in:
David Tomaschik
2015-09-19 10:54:16 -07:00
parent bbf444460e
commit 2fba9d3bf5
2 changed files with 21 additions and 2 deletions

View File

@@ -44,8 +44,10 @@ bindkey '^[[B' history-search-forward
bindkey '^[[1;5C' forward-word
bindkey '^[[1;5D' backward-word
# Source extras
for file in $HOME/.zshrc.d/* ; do source "$file" ; done
# Source extras if interactive
if [[ $- == *i* ]] ; then
for file in $HOME/.zshrc.d/* ; do source "$file" ; done
fi
# Load any local settings
if [ -e $HOME/.zshrc.local ] ; then source $HOME/.zshrc.local ; fi