From fc37cb05b854c05f1ff7c5837c8da5b0cd41ee17 Mon Sep 17 00:00:00 2001
From: Managor <42655600+Managor@users.noreply.github.com>
Date: Fri, 31 Jan 2025 19:24:24 +0200
Subject: [PATCH 1/4] read: update more information link (#15649)

---
 pages/common/read.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/common/read.md b/pages/common/read.md
index 6d40d25d27e7d3..4fb68a4bc214d9 100644
--- a/pages/common/read.md
+++ b/pages/common/read.md
@@ -1,7 +1,7 @@
 # read
 
 > Shell builtin for retrieving data from `stdin`.
-> More information: <https://manned.org/read.1p>.
+> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-read>.
 
 - Store data that you type from the keyboard:
 

From b332446d7486a235be1be7a8fae96d033c1ecdbe Mon Sep 17 00:00:00 2001
From: Managor <42655600+Managor@users.noreply.github.com>
Date: Fri, 31 Jan 2025 19:26:19 +0200
Subject: [PATCH 2/4] {: update more information link (#15646)

---
 pages/common/{.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/common/{.md b/pages/common/{.md
index d8d56788ff8af8..ea75bf4fe04794 100644
--- a/pages/common/{.md
+++ b/pages/common/{.md
@@ -1,7 +1,7 @@
 # Curly brace
 
 > Multipurpose shell syntax.
-> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-hash>.
+> More information: <https://www.gnu.org/software/bash/manual/bash.html>.
 
 - Isolate variable names:
 

From 60369a924f60c31cc74effcee0d1d11a2ebd1a26 Mon Sep 17 00:00:00 2001
From: Managor <42655600+Managor@users.noreply.github.com>
Date: Fri, 31 Jan 2025 19:29:57 +0200
Subject: [PATCH 3/4] local: update more information link (#15645)

---
 pages/common/local.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pages/common/local.md b/pages/common/local.md
index f23b6fe9722180..eafa6b224acefc 100644
--- a/pages/common/local.md
+++ b/pages/common/local.md
@@ -1,7 +1,8 @@
 # local
 
 > Declare local variables and give them attributes.
-> More information: <https://www.gnu.org/software/bash/manual/bash.html#Bash-Builtins>.
+> See also: `declare`.
+> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-local>.
 
 - Declare a string variable with the specified value:
 

From c0e5ac98c504fc61e45dae187f7c4cd352cbecbe Mon Sep 17 00:00:00 2001
From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com>
Date: Fri, 31 Jan 2025 09:34:07 -0800
Subject: [PATCH 4/4] pulumi-config: add `--stack` example (#15647)

---
 pages/common/pulumi-config.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pages/common/pulumi-config.md b/pages/common/pulumi-config.md
index e68312ae3269fb..961c077fe58679 100644
--- a/pages/common/pulumi-config.md
+++ b/pages/common/pulumi-config.md
@@ -7,6 +7,10 @@
 
 `pulumi config --json`
 
+- View configuration for a specified stack:
+
+`pulumi config --stack {{stack_name}}`
+
 - Get the value of a configuration key:
 
 `pulumi config get {{key}}`