How to use:
./wordle.sh
Or try the unlimit mode:
Filter | Description | Example |
---|---|---|
allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
let regex; | |
/* matching a specific string */ | |
regex = /hello/; // looks for the string between the forward slashes (case-sensitive)... matches "hello", "hello123", "123hello123", "123hello"; doesn't match for "hell0", "Hello" | |
regex = /hello/i; // looks for the string between the forward slashes (case-insensitive)... matches "hello", "HelLo", "123HelLO" | |
regex = /hello/g; // looks for multiple occurrences of string between the forward slashes... | |
/* wildcards */ | |
regex = /h.llo/; // the "." matches any one character other than a new line character... matches "hello", "hallo" but not "h\nllo" | |
regex = /h.*llo/; // the "*" matches any character(s) zero or more times... matches "hello", "heeeeeello", "hllo", "hwarwareallo" |
#!/bin/sh | |
# best-mirror.sh | |
# | |
# Domesticaed for FreeBSD by Babak Farrokhi ([email protected]) | |
# | |
# This script finds the fastest freebsd-update mirror based on | |
# data transfer rates from cURL. | |
# | |
# Note: I used a static list of mirrors, which is not the best way to |
log-file /home/kevin/.gnupg/dirmngr.log | |
use-tor | |
debug-level basic | |
debug ipc,dns | |
verbose | |
disable-ipv6 | |
keyserver hkps://hkps.pool.sks-keyservers.net | |
hkp-cacert /usr/share/gnupg/sks-keyservers.netCA.pem |
Install Screen
$ sudo apt install screen
Enter a new Screen Session
$ screen
Detach from current screen session
open terminal: Ctrl+Alt+T
Ctrl + C is used to kill a process with signal SIGINT , in other words it is a polite kill .
Ctrl + Z is used to suspend a process by sending it the signal SIGTSTP , which is like a sleep signal, that can be undone and the process can be resumed again.
What you need to do to install SDL is:
#install sdl2
sudo apt install libsdl2-dev libsdl2-2.0-0 -y;
#install sdl image - if you want to display images
sudo apt install libjpeg-dev libwebp-dev libtiff5-dev libsdl2-image-dev libsdl2-image-2.0-0 -y;
#install sdl mixer - if you want sound