OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
doc
/
git
/
contrib
/
git-shell-commands
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:13:18 AM
rwxr-xr-x
📄
README
839 bytes
05/29/2018 08:14:06 AM
rw-r--r--
📄
help
283 bytes
05/29/2018 08:14:06 AM
rw-r--r--
📄
list
227 bytes
05/29/2018 08:14:06 AM
rw-r--r--
Editing: help
Close
#!/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