| 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" |
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
| #!/bin/bash | |
| # | |
| # A script to manage 'A' or 'CNAME' DNS records in Cloudflare via API. | |
| # | |
| # Usage: | |
| # ./cloudflare_dns.sh (Interactive add mode) | |
| # ./cloudflare_dns.sh -l [-t TYPE] (List records, optionally filter by TYPE: A or CNAME) | |
| # ./cloudflare_dns.sh -u (Interactive update mode) | |
| # ./cloudflare_dns.sh -r (Interactive remove mode) |
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
| sudo apt update && sudo apt install apt-utils -y | |
| curl -sS https://get.docker.com | bash | |
| sudo wget -O /usr/local/bin/docker-compose "$(sudo curl -s https://api.github.com/repos/docker/compose/releases/latest | grep -Po '"html_url": "\K.*\d' | sed 's/tag/download/g')"/docker-compose-linux-"$(uname -m)" && sudo chmod +x /usr/local/bin/docker-compose && sudo docker-compose --version |