12 lines
246 B
Bash
Executable File
12 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2019-2020 Hush developers
|
|
# Released under the GPLv3
|
|
|
|
# set working directory to the location of this script
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd $DIR
|
|
|
|
NAME=HUSHT
|
|
|
|
./komodo-tx -ac_name=$NAME "$@"
|