Manual:getText.php
Jump to navigation
Jump to search
MediaWiki file: getText.php | |
---|---|
Location: | maintenance/ |
Source code: | master • 1.35.2 • 1.31.14 |
Classes: | GetTextMaint |
Details[edit]
MediaWiki version: | ≥ 1.16 |
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:
Usage[edit]
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.