This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "# название" >> README.md | |
git init | |
git add README.md | |
git commit -m "first commit" | |
git remote add origin https://github.com/stanruss/название.git | |
git push -u origin master | |
git log --oneline - посмотреть все коммиты. | |
git checkout . - восстановить все. | |
git checkout "код коммита" - вернуть до состояния этого коммита. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nucleir() { | |
local TPL="$HOME/Documents/nuclei-templates" | |
[[ -z "${1}" ]] && { echo "-target/-l ?"; return; } | |
[[ -z "${2}" ]] && { echo "Input target?"; return; } | |
local T="" | |
for i in `ls -1d ${TPL}/*/`; do | |
if [[ ! "${i}" =~ (brute-force|examples|payloads) ]]; then |