Skip to content

Commit 0f22f0d

Browse files
committed
Add shebang to indicate bash requirement
1 parent ac96318 commit 0f22f0d

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

reference/docs-conceptual/install/install-alpine.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: How to install PowerShell on Alpine Linux
3-
ms.date: 12/15/2025
3+
ms.date: 02/04/2026
44
title: Install PowerShell on Alpine Linux
55
---
66
# Install PowerShell on Alpine Linux
@@ -28,6 +28,7 @@ to the package depends on the version of PowerShell you want to install.
2828
Then, in the terminal, execute the following shell commands to install PowerShell 7.4:
2929

3030
```sh
31+
#!/bin/bash
3132
# install the requirements
3233
sudo apk add --no-cache \
3334
ca-certificates \

reference/docs-conceptual/install/install-debian.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: How to install PowerShell on Debian Linux
3-
ms.date: 12/15/2025
3+
ms.date: 02/04/2026
44
title: Install PowerShell on Debian
55
---
66
# Install PowerShell on Debian
@@ -31,6 +31,7 @@ Installing PowerShell from PMC is the preferred method of installation.
3131
> This script only works for supported versions of Debian.
3232
3333
```sh
34+
#!/bin/bash
3435
###################################
3536
# Prerequisites
3637

@@ -81,6 +82,7 @@ The following shell script downloads and installs the current release of PowerSh
8182
change the URL to download the version of PowerShell that you want to install.
8283

8384
```sh
85+
#!/bin/bash
8486
###################################
8587
# Prerequisites
8688

reference/docs-conceptual/install/install-rhel.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Red Hat Enterprise Linux (RHEL)
3-
ms.date: 12/15/2025
3+
ms.date: 02/04/2026
44
title: Installing PowerShell on Red Hat Enterprise Linux (RHEL)
55
---
66
# Installing PowerShell on Red Hat Enterprise Linux (RHEL)
@@ -31,6 +31,7 @@ Installing PowerShell from PMC is the preferred method of installation.
3131
> This script only works for supported versions of RHEL that are published to PMC.
3232
3333
```sh
34+
#!/bin/bash
3435
###################################
3536
# Prerequisites
3637

reference/docs-conceptual/install/install-ubuntu.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Information about installing PowerShell on Ubuntu
3-
ms.date: 12/15/2025
3+
ms.date: 02/04/2026
44
title: Installing PowerShell on Ubuntu
55
---
66
# Installing PowerShell on Ubuntu
@@ -31,6 +31,7 @@ Installing PowerShell from PMC is the preferred method of installation.
3131
> This script only works for supported versions of Ubuntu.
3232
3333
```sh
34+
#!/bin/bash
3435
###################################
3536
# Prerequisites
3637

@@ -93,6 +94,7 @@ The following shell script downloads and installs the current preview release of
9394
change the URL to download the version of PowerShell that you want to install.
9495

9596
```sh
97+
#!/bin/bash
9698
###################################
9799
# Prerequisites
98100

0 commit comments

Comments
 (0)