Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
1
Task/Hostname/OoRexx/hostname-1.rexx
Normal file
1
Task/Hostname/OoRexx/hostname-1.rexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
say .oleObject~new('WScript.Network')~computerName
|
||||
1
Task/Hostname/OoRexx/hostname-2.rexx
Normal file
1
Task/Hostname/OoRexx/hostname-2.rexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
say value('COMPUTERNAME',,'environment')
|
||||
1
Task/Hostname/OoRexx/hostname-3.rexx
Normal file
1
Task/Hostname/OoRexx/hostname-3.rexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
address command 'hostname -f'
|
||||
1
Task/Hostname/OoRexx/hostname-4.rexx
Normal file
1
Task/Hostname/OoRexx/hostname-4.rexx
Normal file
|
|
@ -0,0 +1 @@
|
|||
address command "echo $HOSTNAME"
|
||||
7
Task/Hostname/OoRexx/hostname-5.rexx
Normal file
7
Task/Hostname/OoRexx/hostname-5.rexx
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
/* Rexx */
|
||||
address command "echo $HOSTNAME | rxqueue"
|
||||
address command "hostname -f | rxqueue"
|
||||
loop q_ = 1 while queued() > 0
|
||||
parse pull hn
|
||||
say q_~right(2)':' hn
|
||||
end q_
|
||||
8
Task/Hostname/OoRexx/hostname-6.rexx
Normal file
8
Task/Hostname/OoRexx/hostname-6.rexx
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
/* Rexx */
|
||||
qq = .rexxqueue~new()
|
||||
address command "echo $HOSTNAME | rxqueue"
|
||||
address command "hostname -f | rxqueue"
|
||||
loop q_ = 1 while qq~queued() > 0
|
||||
hn = qq~pull()
|
||||
say q_~right(2)':' hn
|
||||
end q_
|
||||
Loading…
Add table
Add a link
Reference in a new issue