updooted packages
This commit is contained in:
@@ -0,0 +1,3 @@
|
|||||||
|
while($True) {
|
||||||
|
nmap -p22 -sV --open 10.0.0.0/24 -oG -
|
||||||
|
}
|
||||||
@@ -79,9 +79,15 @@ if [ ! -z "$1" ]; then
|
|||||||
test -d /home/linuxbrew/.linuxbrew && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
test -d /home/linuxbrew/.linuxbrew && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||||
test -d /home/linuxbrew/.linuxbrew && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
test -d /home/linuxbrew/.linuxbrew && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||||
### add to rcfile
|
### add to rcfile
|
||||||
# echo "# linuxbrew (homebrew/brew)" >> $rcfile
|
if ! grep -q 'linuxbrew' $rcfile; then
|
||||||
# echo "eval \"\$($(brew --prefix)/bin/brew shellenv)\"" >> $rcfile
|
echo "adding linuxbrew to $rcfile"
|
||||||
# source $rcfile
|
echo "# linuxbrew (homebrew/brew)" >> $rcfile
|
||||||
|
echo "eval \"\$($(brew --prefix)/bin/brew shellenv)\"" >> $rcfile
|
||||||
|
else
|
||||||
|
echo "linuxbrew already in $rcfile skipping"
|
||||||
|
fi
|
||||||
|
|
||||||
|
source $rcfile
|
||||||
else
|
else
|
||||||
echo -e "\nlinuxbrew installed, skipping install\n"
|
echo -e "\nlinuxbrew installed, skipping install\n"
|
||||||
fi
|
fi
|
||||||
@@ -89,7 +95,12 @@ if [ ! -z "$1" ]; then
|
|||||||
if [ ! $(which ponysay) ]; then
|
if [ ! $(which ponysay) ]; then
|
||||||
echo -e "\nponysay not fonud, installiing\n"
|
echo -e "\nponysay not fonud, installiing\n"
|
||||||
brew install ponysay
|
brew install ponysay
|
||||||
# echo -e "# ponysay fix\nexport PYTHONWARNINGS=ignore::SyntaxWarning" >> $rcfile
|
if ! grep 'ponysay fix' $rcfile; then
|
||||||
|
echo "adding ponysay fix to $rcfile"
|
||||||
|
echo -e "# ponysay fix\nexport PYTHONWARNINGS=ignore::SyntaxWarning" >> $rcfile
|
||||||
|
else
|
||||||
|
echo "ponysay fix already in $rcfile skipping"
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
echo -e "\nponysay already installed, skipping\n"
|
echo -e "\nponysay already installed, skipping\n"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user