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
OR 1=1 | |
OR 1=0 | |
OR x=x | |
OR x=y | |
OR 1=1# | |
OR 1=0# | |
OR x=x# | |
OR x=y# | |
OR 1=1-- | |
OR 1=0-- |
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 | |
if [ $# -lt 1 ] ; then | |
printf "%s\n" "Usage: $0 version" | |
exit 1 | |
fi | |
VERSION=$1 | |
JENKINS_FILE="jenkins.war_$VERSION.bak" |
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
docker exec -e COLUMNS="`tput cols`" -e LINES="`tput lines`" -ti container bash |
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 '{"id":8}' | http --verify=no POST https://service.dev/api/id Content-Type:application/json 'Cookie:XDEBUG_SESSION=PHPSTORM' |
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/sh | |
# Remove local branches | |
# which are not in the remote | |
git fetch -p && for branch in `git branch -vv | grep ': gone]' | awk '{print $1}'`; do git branch -D $branch; done |
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
docker run -v myhtml:/var/www/html -p 8000:80 php:5.6-apache /bin/bash -c 'a2enmod rewrite; apache2-foreground' |
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
#1. hello_world/ | |
echo 'hello world' | |
#2. current_working_directory/ | |
echo $PWD | |
#3. list_files/ | |
ls -A | |
#4. print_file_contents/ |