Dmitrii Okunev
d29b0a48ff
Add option "-e"
Option "-e" allows to set the command to be executed:
```
echo '6001d5ff0000000003000000000107000000dcff' | \
yaegi -e 'import "fmt"; import "os"; import "encoding/hex"; import "io/ioutil"; func main() { in, _ := ioutil.ReadAll(os.Stdin); decoded, _ := hex.DecodeString(string(in));fmt.Println(string(decoded)) }' 2>/dev/null | \
hexdump -C
00000000 60 01 d5 ff 00 00 00 00 03 00 00 00 00 01 07 00 |`...............|
00000010 00 00 dc ff 0a |.....|
00000015
```