Steam console: Difference between revisions

From wikinotes
(Created page with "Steam has a command console that you can use to interact with it's API. = Usage = <blockquote> Launch steam with <syntaxhighlight lang="bash"> open 'steam://open/console' # launch steam with console tab present </syntaxhighlight> Then search for, and find documentation for commands <syntaxhighlight lang="bash"> find 'keyword' </syntaxhighlight> </blockquote><!-- Usage -->")
 
 
Line 10: Line 10:
Then search for, and find documentation for commands
Then search for, and find documentation for commands
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
find 'keyword'
find SEARCHWORD
</syntaxhighlight>
</syntaxhighlight>
</blockquote><!-- Usage -->
</blockquote><!-- Usage -->
= Commands =
<blockquote>
Some useful commands
<syntaxhighlight lang="bash">
apps_installed      # list all installed apps, and APPIDs
app_uninstall 12345  # uninstall an APPID
</syntaxhighlight>
</blockquote><!-- Commands -->

Latest revision as of 23:03, 4 September 2023

Steam has a command console that you can use to interact with it's API.

Usage

Launch steam with

open 'steam://open/console'  # launch steam with console tab present

Then search for, and find documentation for commands

find SEARCHWORD

Commands

Some useful commands

apps_installed       # list all installed apps, and APPIDs
app_uninstall 12345  # uninstall an APPID