aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rwxr-xr-xapp8
1 files changed, 6 insertions, 2 deletions
diff --git a/app b/app
index 81c2c36..e0c81a4 100755
--- a/app
+++ b/app
@@ -4,10 +4,14 @@ usage_text() {
echo "usage: $usage_app <command>"
echo ""
echo "Available porcelain commands:"
- grep_path "/app-.*$" "$APPSH_HOME/bin" | sed "s,^.*/app-, ,"
+ grep_path "/app-.*$" "$APPSH_HOME/bin" | \
+ sed "s,^.*/app-, ," | \
+ sort -n
echo ""
echo "Available plumbing commands:"
- grep_path "/app-.*$" "$APPSH_HOME/libexec" | sed "s,^.*/app-, ,"
+ grep_path "/app-.*$" "$APPSH_HOME/libexec" | \
+ sed "s,^.*/app-, ," | \
+ sort -n
}
PRG="$0"