Path: csiph.com!tncsrv06.tnetconsulting.net!news.snarked.org!news.linkpendium.com!news.linkpendium.com!panix!usenet.stanford.edu!not-for-mail From: Hongyi Zhao Newsgroups: gnu.bash.bug Subject: `help declare' don't show the same document with the online one. Date: Tue, 28 Jul 2020 20:47:25 +0800 Lines: 25 Approved: bug-bash@gnu.org Message-ID: References: NNTP-Posting-Host: lists.gnu.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Trace: usenet.stanford.edu 1595940462 15619 209.51.188.17 (28 Jul 2020 12:47:42 GMT) X-Complaints-To: action@cs.stanford.edu To: bug-bash@gnu.org Envelope-to: bug-bash@gnu.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=OgwS4HNZ4u/rKPelDTejUyaorq2+PiLLWyrL3u2AZqI=; b=HCT0Yf5WH3zbuoOkLlh8jdvvUVCkztIhacQJw2v/lE5O+RCXyGxM8Qov+R/jyEeh+O eu4v3v7ZOPPMYdgZcr8SRiiqTug83yzZzOiO3ICTj3zEJcuNWZ9NtKPp7N3EoUUTZoV8 8HisOBT3G2L6jNu7788wt1wTwTi/v7S48HPni3GRAHOh7KGge10Qg9uPhm1Odf/JgLeF 18N3N2/JvaDq0MqjkXtsu6kBX+kPcR/FqyNeL5gG0x32vm42+eC0Dy5DEacGyMxQ5sbp RprQEzo0vBLchLoDInzI1YhoGCo3eV4xx3Hjk9w8tdocH0KOqN+i6ksi7KXiMHY0DjkC nHhQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-transfer-encoding; bh=OgwS4HNZ4u/rKPelDTejUyaorq2+PiLLWyrL3u2AZqI=; b=Z/N+/sd8YlMR7iWqpViYwcLOQxD13eYDNbSnQqxEjkSNxl0SPlSfvLAXGr0LqI90vU Y4323CzQv+IyUmxgE8nYK0vzeMwdVGSgyxlN70DiMgQuiGfQNqr8pc51eDQmVmD5DR6I VUQz1bKAXmpHe8UmcFMGgrtA0+vc2X19aDXUM7hTcsEHLQlCcu1uDm95i6WYaIHo0dUV 1GmiOZLSDd4OjFnO60TaPxDlV2/EdM2+/mdMHB+HuWvJa8Fjnv7h+lsRoJs0TUpHKxh7 bc7hz8oZvK4Xs/WzHFSe52GPrPB/5Nu9oZWKotc8qYMO9c5p0NzVBA61qfv9oyBKihkx Oozw== X-Gm-Message-State: AOAM532R3P9FnLaKyYutTX4dgbaMp2a70kyr8DsFBaPL1IxHgwhZrYp1 8hPNNPRYT/TG99db5QgTD+MvaVcShCALv9NTT8EudImBRN2cJA== X-Google-Smtp-Source: ABdhPJyKcmKSP2Svy5WU7p35M1MhuMe9FebshyluGujfelsTc64zu8TRbqnZZ62YB4E3NNgUwjxhUEr4nYLTysN5RY8= X-Received: by 2002:ac5:ccaf:: with SMTP id p15mr19411542vkm.12.1595940456855; Tue, 28 Jul 2020 05:47:36 -0700 (PDT) Received-SPF: pass client-ip=2607:f8b0:4864:20::a36; envelope-from=hongyi.zhao@gmail.com; helo=mail-vk1-xa36.google.com X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: bug-bash@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Bug reports for the GNU Bourne Again SHell List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: Xref: csiph.com gnu.bash.bug:16634 Hi, On Ubuntu 20.04, I installed the latest git master version of bash. Then I check the document for declare built-in command and also check the online document located here: https://www.gnu.org/software/bash/manual/bash#Bash-Builtins. The online version of the document for declare told the following usage: declare declare [-aAfFgilnrtux] [-p] [name[=3Dvalue] =E2=80=A6] [...] The -p option will display the attributes and values of each name. When -p is used with name arguments, additional options, other than -f and -F, are ignored. But I can't find the same notes from the local version of the document for this command given by `help declare', any hints for this problem? Regards --=20 Hongyi Zhao