arj/unarj.sh

10 lines
74 B
Bash

#!/bin/sh
set -e
if [ $# -eq 1 ]; then
arj l "$@"
else
arj "$@"
fi