=============================
== a l l w r o n g . x y z ==
=============================
you've come to the wrong place

norns-tiny-term


a tiny terminal emulator-ish script for norns

tiny-term screenshot tiny-term on GitHub

idea: os.execute(‘command’) -> print(“output”) - using io.popen instead for this.

script details

local handle = io.popen("ls")
local result = handle:read("*a")
handle:close()
print(result)local handle = io.popen("ls")
local result = handle:read("*a")
handle:close()
print(result)

description

tiny-term-is-a-simple-terminal-emulator-ish-script-for-norns is a simple terminal emulator-ish script for norns
- the script opens with a prompt `>` and blinking cursor `_`
- input from keyboard displays after the prompt `> cd home/we/dust_`
- pressing `enter` will  execute the command.
- the display will show the executed command and the resulting output
    - `pwd -> /home/we/dust/audio`
- the display can be scrolled using k2 or keyboard arrow keys

to do

build