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 | |
# Check for the --help flag | |
if [[ "$1" == "--help" ]]; then | |
echo "Creates a new Tor identity. Usage:" | |
echo "sudo ./tor_new_identity.sh" | |
exit 0 | |
fi | |
# Check if the script is run as root |
OlderNewer