You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
ONIONR_HOME=.
|
|
if [ $# -gt 0 ]; then
|
|
ONIONR_HOME=$1
|
|
export ONIONR_HOME
|
|
echo "set ONIONR_HOME to $ONIONR_HOME"
|
|
fi
|