How would you translate this simple eval loop to execlineb? #!/bin/sh read input </dev/tty exec sh -c "$input;./$0"
This of course does not work:
#!/bin/execlineb
backtick -n input { read input </dev/tty }
execlineb -c $input
because read is builtin to sh.
Is there a solution as simple as the above?
