Shell one-liner: Difference between revisions

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