|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 899 (0x383)
Types: TextFile
Notes: R1k Text-file segment
└─⟦8527c1e9b⟧ Bits:30000544 8mm tape, Rational 1000, Arrival backup of disks in PAM's R1000
└─⟦cfc2e13cd⟧ »Space Info Vol 2«
└─⟦d3ba0bf29⟧
└─⟦this⟧
with Directory_Tools;
with Remote;
with System_Utilities;
with Transport_Name;
procedure Fujitsu_Print (File : String := "<Image>") is
package Dtn renames Directory_Tools.Naming;
package Dto renames Directory_Tools.Object;
package Su renames System_Utilities;
package Tn renames Transport_Name;
File_Name : constant String := Dtn.Unique_Full_Name (The_Object => File);
Machine_Name : constant String := Tn.Local_Host_Name (Network => "TCP/IP");
User_Name : constant String := Su.User_Name;
begin
Remote.Run (Machine => "ancolie",
Command => "print_broker(""" & File_Name & """, """ &
Machine_Name & """,""" & User_Name & """)",
File_Context => "$",
Run_Context => "<DEFAULT>",
Options => "",
Response => "<PROFILE>");
end Fujitsu_Print;
pragma Main