Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
powerbasic/dostrend.bas
2013-07-15 23:19:32 +02:00

71 lines
1.7 KiB
QBasic
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

cls
color 15
print"ððð DOS Trend - Sortierer ððð";:color 7:print" written by"
$INCLUDE"LOGO.INC"
color 15:print
if command$="" then goto Syntax
fle$=command$
print"Sortiere Eingabedatei ... ";
dos$="sort <"+fle$+" >temp.$$$"
shell dos$
print"OK"
on error goto Syntax
print"™ffne Kanal #1 ... ";
open "I",#1,"TEMP.$$$"
print"OK"
on error goto
print"™ffne Kanal #2 ... ";
open "O",#2,"DOSTREND.OUT"
print"OK"
print"Schreibe Dateikopf ... ";
print#2,"ððð DOS Trend - Sortierer ððð"
print#2," written by RoboCop INDUSTRIES"
print#2,""
print#2,""
print#2,"Folgende Programme sind sofort verf<72>gbar:"
print#2,""
print"OK"
print"Beginne L”schsequenz ... ";
x=csrlin:y=pos(0)
locate 25,1:color 10:print"ÛÛÛÛÛÛ";
line input#1,zle$
2 locate 25,1:color 12:print"ÛÛÛÛÛÛ";
print#2,zle$
1 if eof(1) then 3
locate 25,1:color 10:print"ÛÛÛÛÛÛ";
line input#1,zle2$
locate 25,1:color 14:print"ÛÛÛÛÛÛ";
if zle2$=zle$ then goto 1 else let zle$=zle2$:goto 2
3 locate 25,1:color 15:print" ";
locate x,y:print"OK"
print"Schlieáe Kanal #1 ... ";
close #1
print"OK"
print"Schlieáe Kanal #2 ... ";
close #2
print"OK"
print"L”sche TEMP.$$$ Datei ... ";
kill "temp.$$$"
shell "echo .>temp.$$$"
kill "temp.$$$"
print"OK"
print
print"ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»"
print"º Die Liste befindet sich º"
print"º sortiert in der Datei º"
print"º DOSTREND.OUT. º"
print"ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ"
print
print"Programm beendet."
goto Ende
Syntax:
print
print"Syntax: DOSTREND <Eingabedatei>"
print
print"Eingabedatei - Datei mit dem Inhalt der DOS Trend CDs"
print
goto Ende
Ende: