wikibase-cli
Version:
A command-line interface to Wikibase
13 lines (11 loc) • 504 B
JavaScript
import { editCommandsOptions } from '#lib/common_options'
export default {
alias: 'sa',
args: '<entity> <language> <aliases>',
description: 'set the list of aliases of an entity in a given language',
options: editCommandsOptions,
examples: [
{ args: 'Q4115189 fr foo', comment: "replaces the Sandbox entity (Q4115189) French aliases by 'foo'" },
{ args: 'Q4115189 fr "foo|bar|buzz', comment: "replaces the Sandbox entity (Q4115189) French aliases by foo', 'bar', and 'buzz'" },
],
}