Manual:edit.php

From mediawiki.org
This page is a translated version of the page Manual:Edit.php and the translation is 60% complete.

詳細

edit.php ファイルは、コマンドラインから記事を編集するメンテナンス スクリプトです。

使用法

php edit.php [options...] <title>

オプション

オプション/パラメーター 説明
-u ‎<user> 利用者名
-s ‎<summary> 編集の要約
-m 細部の編集
-b Bot (hidden) edit
-a Enable autosummary
--no-rc Do not show the change in recent changes

If the specified user does not exist, it will be created. If no username has been provided, the edit will be attributed to user "Maintenance script", created if needed. The text for the edit will be read from stdin.

php edit.php -s "Quick edit" -m Page_I_want_to_edit < file_containing_wikitext

The above will edit the page Page_I_want_to_edit (marking the edit minor) so it contains the contents of the file file_containing_wikitext using the edit summary Quick edit.

php getText.php "page_title" | sed -e 's/\bfoo\b/bar/g' | php edit.php "page_title"

The above will take the text of the page page_title from your wiki, replace every occurrence of the word foo with the word bar, and save the result back to the page page_title. You can do many complex text transformations of page text this way; see your unix manual's entry for sed.

関連項目