13 lines
120 B
Bash
Executable file
13 lines
120 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DEST=$1
|
|
|
|
|
|
[ "$DEST" ] || exit 1
|
|
|
|
cd "$(dirname "$0")"/
|
|
|
|
./bat2nodes.py -A -a aliases.json -d $DEST
|