11 lines
180 B
Bash
11 lines
180 B
Bash
#!/bin/bash
|
|
# Copyright (c) 2013 Martin Ueding <dev@martin-ueding.de>
|
|
|
|
# Small launcher script for the main module.
|
|
|
|
# Licence: GPL 3
|
|
|
|
set -e
|
|
set -u
|
|
|
|
python3 -m colout.colout "$@"
|