#!/bin/bash # # Wrapper for the Tor Software Bundle # ARCH="`uname -m`" if [ "$ARCH" == "i386" ]; then ARCH="linux32" elif [ "$ARCH" == "i686" ]; then ARCH="linux32" elif [ "$ARCH" == "x86_64" ]; then ARCH="linux64" fi mkdir -p $HOME/apps/tor-browser/$ARCH/Logs $HOME/apps/tor-browser/$ARCH/start-tor-browser &> $HOME/apps/tor-browser/$ARCH/Logs/tor-browser.log &