mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-17 20:50:44 +00:00
12 lines
189 B
Bash
Executable File
12 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR=$(dirname $0)
|
|
. ${DIR}/../lib/quickLoop.sh
|
|
|
|
|
|
defineOption 1 "ls" "Short listing"
|
|
defineOption 2 "ls -l" "Long listing"
|
|
defineOption 3 "tree" "Tree listing"
|
|
|
|
quickLoop;
|