Shell one-liner: Difference between revisions

Content deleted Content added
KenS (talk | contribs)
Added FutureBasic example
KenS (talk | contribs)
m →‎{{header|FutureBasic}}: Corrected punctuation
Line 238:
This is forcing the issue. FB has much more elegant ways of interacting with the Unix Shell.
<lang futurebasic>
include "ConsoleWindow":dim a$:open "Unix", 1, "cal":do:line input #1,a$:print a$:until eof(1):close 1:RunApplicationEventLoop()
</lang>