| 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
| ## Generate Public Key from Private Key | |
| openssl rsa -in priv.pem -pubout -out pub.pem | |
| ## Compare with Downloaded Pub Key | |
| diff pub.pem downloaded_pub.pem |
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
| ## Clone with depth | |
| git clone --depth=50 --branch master https://my.repo | |
| # Store the hash of the oldest commit (ie. in this case, the 50th) in a var | |
| ## This one used for defining Initial Commit | |
| START_COMMIT=$(git rev-list master|tail -n 1) | |
| git checkout $START_COMMIT | |
| # Create a new orphaned branch, which will be temporary | |
| git checkout --orphan temp_branch |