Manual:GetText.php

From MediaWiki.org
Jump to: navigation, search

Other languages:
Deutsch • ‎English • ‎español • ‎français • ‎italiano • ‎македонски • ‎polski • ‎português • ‎português do Brasil
MediaWiki version: 1.16

Details[edit | edit source]

getText.php file is a maintenance script that outputs content of a given page (wikitext) to stdout. It could be used for scripting, for example:

php getText.php "page title" | sed -e '...' | php edit.php "page title"

The only parameter, in addition to standard ones, is page title. If it contains whitespace, it should be enclosed in double quotes ("), as shown in example.

External links[edit | edit source]