openterm
openterm copied to clipboard
OpenTerm, a sandboxed command line interface for iOS
`say "Sentence"` and `say -v Voice "Sentence"` both work perfectly. But `say -h`, `say -help`, `say -u`... all hang: the terminal does nothing until I press the "Stop" button.
Currently, each command extension created will create redundant and duplicate code for parsing the flags passed as arguments to the command. Something on the lines of getOpt with Linux systems...
Would love to see man pages available for each of the included utilities. There are a few options for where information from them could surface in-app: - `man ` -...
This is related to issue #108 How can one create a command that uses a UIViewController to do something and then return the data as terminal text. * semaphore to...
Replace the current UI for font size, text color and background color with a themes UI. There will be a default OpenTerm theme. Users can create/rename/edit/delete themes. The color picker...
Please supports iOS 11 keyboard word suggestions and shortcuts function.
All commands are currently executed from a background thread. That makes it unsafe for any command to access the UI. Some commands, like `credits`, want access to the UI to...
rm ~/.bash_history history -c These here is not possible.
Typically, shells are their own application that runs separately from the terminal. See an example [here](https://brennan.io/2015/01/16/write-a-shell-in-c/). Currently the input reading & prompt is mostly in the TerminalView class, which is...