View stopcorespeechd.sh
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 | |
while true | |
do | |
killall corespeechd | |
echo "running" | |
sleep .3 | |
done |
View encrypt.sh
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
# Replace the output and file name | |
# Assuming you are in the same directory of the file to encrypt | |
zip -er OUTPUTNAME.zip FILENAME.txt | |
# You will be prompted to enter password for decryption |