10 lines
74 B
Bash
10 lines
74 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if [ $# -eq 1 ]; then
|
|
arj l "$@"
|
|
else
|
|
arj "$@"
|
|
fi
|
|
|