This file contains 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 | |
case "{$file}" in | |
*.jpg ) echo "JPEG" | |
esac |
This file contains 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 | |
case "{$file}" in | |
*.jpg ) echo "JPEG" | |
esac |
This file contains 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
keycode 108 = Mode_switch | |
keycode 48 = apostrophe quotedbl ae AE | |
keycode 47 = semicolon colon oslash Oslash | |
keycode 34 = bracketleft braceleft aring Aring |
This file contains 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/ash | |
while : | |
do | |
/root/ap/busybox nc -l -p 65002 >> /tmp/nc.log | |
done |
This file contains 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
for f in $(ls *.mp3); do rm "$f"; done |
This file contains 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 "hello world" > foo | |
7z a file.7z -ppa\$\$w\*rd foo | |
rm foo | |
IFS= read -r -p "Password: " password | |
7z x file.7z -p"$password" | |
cat foo |