Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
doc
/
git
/
contrib
/
git-shell-commands
Upload
5 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
README
839 B
-rw-r--r--
2024-05-31 00:41:06
Edit
Del
help
283 B
-rw-r--r--
2024-05-31 00:41:06
Edit
Del
list
227 B
-rw-r--r--
2024-05-31 00:41:06
Edit
Del
Editing: help
(283 B)
Path: /usr/share/doc/git/contrib/git-shell-commands/help
Back
#!/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