After git Commit -a -m "message"
git config --global http.postBuffer 157286400
git push or git push -u origin main
I am not your BEST, But I will try
After git Commit -a -m "message"
git config --global http.postBuffer 157286400
git push or git push -u origin main
check which gives python v 10
******************************
python --version
py --version
python3.10 --version
To create Python 10 Virtual Environment
windows
1. <python/py> -m venv pyV10Env //to generate that version venv
2. .\pyV10Env\Scripts\activate.bat
3. py --version
4. python --version
5. //all set go, use ur py commands
6. deactivate
linux
1. <python/py> -m venv pyV10Env //to generate that version venv
2. source nse_env/bin/activate
3. py --version
4. python --version
5. //all set go, use ur py commands
6. deactivate
Steps
airmon-ng stop wlan1
sublist3r -v -b -d -t 10 -e bing -o example-subdomains.txt example.com
NOTE: DONT FORGOT TO INSERT THE WIFI DEVICE IN USB 2.0 AND NOT USB 3.0, IF YOU INSERT IN 3.0 IT WILL THROW NETWORK DOWN AFTER FEW SECONDS OF AIRODUMP-NG ETC..
go to hardinfo2->usb menu to see which port is usb 2.0
1. make sure internet is working and isntall the below driver for TP link - TL-wn722N 150 mbps usb adaptor
apt update
sudo apt install -y realtek-rtl8188eus-dkms
init 6 //restart
If you're looking for lines matching in files, my favorite command is:
grep -Hrni 'vijay' /home/v/abc.txt
grep -rl 'vijay' /home/vfolder
-H
causes the filename to be printed (implied when multiple files are searched)-r
does a recursive search-n
causes the line number to be printed-I
ignore binary files (complement: -a
treat all files as text)-F
treat search term
as a literal, not a regular expression-i
do a case-insensitive search--color=always
to force colors even when piping through less
. To make less
support colors, you need to use the -r
option:
grep -Hrn search . | less -r
--exclude-dir=dir
useful for excluding directories like .svn
and .git
.