#!/usr/bin/env bash
if [[ ! $@ ]]; then
	python3.8 -m filezilla -h
else
	python3.8 -m filezilla $@
fi
