From 2df55671230c183e3cce74e8a038489e03760abb Mon Sep 17 00:00:00 2001 From: Huynh Viet <71810726+qvieth@users.noreply.github.com> Date: Wed, 4 Aug 2021 18:57:15 +0700 Subject: [PATCH] dict: add page (#6283) --- pages/common/dict.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/dict.md diff --git a/pages/common/dict.md b/pages/common/dict.md new file mode 100644 index 0000000000..55fe509560 --- /dev/null +++ b/pages/common/dict.md @@ -0,0 +1,24 @@ +# dict + +> Command line dictionary using the DICT protocol. +> More information: . + +- List available databases: + +`dict -D` + +- Get information about a database: + +`dict -i {{database_name}}` + +- Look up a word in a specific database: + +`dict -d {{database_name}} {{word}}` + +- Look up a word in all available databases: + +`dict {{word}}` + +- Show information about the DICT server: + +`dict -I`