Difference between revisions of "Shell.setAlias"

From ComputerCraft Wiki
Jump to: navigation, search
m (Changed program argument from optional to required. My bad.)
m (Category operation: +Category:API_Functions)
 
Line 14: Line 14:
 
* It does not output anything, it just sets the alias.
 
* It does not output anything, it just sets the alias.
 
  }}
 
  }}
 +
 +
[[Category:API_Functions]]

Latest revision as of 05:07, 20 May 2013

Grid Redstone.png  Function shell.setAlias
Sets an alias.
Syntax shell.setAlias(string alias, string program)
Returns nil
Part of ComputerCraft
API shell

Examples

Grid paper.png  Example
Sets the alias for program "startup".
Code
shell.setAlias("start", "startup")

Additional Notes

  • It does not output anything, it just sets the alias.