You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
155 B
11 lines
155 B
8 years ago
|
#!/bin/sh
|
||
|
arch=$(uname -m)
|
||
|
|
||
|
if [ $arch == "x86_64" ]
|
||
|
screen -Adm -S i2pd ./i2pd-x86_64 --datadir=.
|
||
|
else
|
||
|
screen -Adm -S i2pd ./i2pd-i386 --datadir=.
|
||
|
fi
|
||
|
|
||
|
|