blob: 0267d2b8a65e5cf264d42d1f60c15bd199d08cd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/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
$HOME/apps/tor-browser/$ARCH/start-tor-browser &> $HOME/apps/tor-browser/$ARCH/Data/Browser/tor-browser.log &
|