Differences between revisions 2 and 8 (spanning 6 versions)
Revision 2 as of 2005-12-28 00:40:47
Size: 309
Editor: rrcs-67-53-83-75
Comment:
Revision 8 as of 2009-03-07 22:21:04
Size: 614
Editor: adsl-75-30-178-145
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:

This is a simple ["Powerful Python One-Liners"].  It prints the systems's hostname to the screen.   
This is a simple [[Powerful Python One-Liners]]. It prints the systems's hostname to the screen.
Line 6: Line 5:
Line 10: Line 8:
This program has been uploaded to the Wiki. You can download it as an attachment from this page. This program has been uploaded to the Wiki. You can download it as an attachment from this page.

Well, sometimes. A lighter-weight variant with desirable properties is

{{{import os; print os.uname()[1]}}}

[[lwickjr]]: --which doesn`t seem to work on Windows. :(

[[snark]]: -- use {{{import platform; print platform.uname()[1]}}}

[[synthesis]]: -- use {{{import platform; print platform.node()}}}

Description

This is a simple Powerful Python One-Liners. It prints the systems's hostname to the screen.

Code

from socket import gethostname; print gethostname()

Download

This program has been uploaded to the Wiki. You can download it as an attachment from this page.

Well, sometimes. A lighter-weight variant with desirable properties is

import os; print os.uname()[1]

lwickjr: --which doesn`t seem to work on Windows. :(

snark: -- use import platform; print platform.uname()[1]

synthesis: -- use import platform; print platform.node()

Powerful Python One-Liners/Hostname (last edited 2009-03-07 22:21:04 by adsl-75-30-178-145)

Unable to edit the page? See the FrontPage for instructions.