#!/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 cd $HOME/apps/tor-browser/$ARCH $HOME/apps/tor-browser/$ARCH/start-tor-browser.desktop &> $HOME/apps/tor-browser/$ARCH/Logs/tor-browser.log &