9 lines
158 B
Bash
Executable file
9 lines
158 B
Bash
Executable file
#! /bin/bash
|
|
|
|
ROOT="${1}"
|
|
DIR="${ROOT}/usr/lib/over/hex"
|
|
BIN="over-hex"
|
|
|
|
mkdir -p "${DIR}"
|
|
cp *.py "${DIR}"
|
|
ln -s "${DIR}/${BIN}.py" "${ROOT}/usr/bin/${BIN}"
|