|
<< Index >> |
FutureBasic |
open "UNIX" ( unsupported as of FB 7.0.25+ ) | statement | |
|
open "UNIX" , fileID, UNIXcommand$
open "UNIX"
Str255 a
window 1,, (0,0,600,550)
text @"Menlo" , 10
// print a title-string then list a directory
open "UNIX" , 2, "echo ""Root Directory""; ls -l"
do
line input #2, a
print a
until eof (2)
close 2
HandleEvents