ibara / oksh

Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh).
352 stars 38 forks source link

Feature request: bashism "<<<" #67

Open cheusov opened 2 years ago

cheusov commented 2 years ago

This is a feature request.

There is very interesting bash extension for interactive use: "<<<". For example, I often use oneliners like the following

$ bc <<< 2+2 4 $

instead of

$ echo '2+2' | bc 4 $

What do you think about implementing this in oksh (OpenBSD /bin/sh)?