Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1 @@
say .oleObject~new('WScript.Network')~computerName

View file

@ -0,0 +1 @@
say value('COMPUTERNAME',,'environment')

View file

@ -0,0 +1 @@
address command 'hostname -f'

View file

@ -0,0 +1 @@
address command "echo $HOSTNAME"

View 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_

View 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_