#!/bin/sh if tty -s then echo "Run 'help' for help, or 'exit' to leave. Available commands:" else echo "Run 'help' for help. Available commands:" fi cd "$(dirname "$0")" for cmd in * do case "$cmd" in help) ;; *) [ -f "$cmd" ] && [ -x "$cmd" ] && echo "$cmd" ;; esac done
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
README | File | 839 B | 0644 |
|
help | File | 283 B | 0644 |
|
list | File | 227 B | 0644 |
|