From faa56a342c770470a90b5743482e7b6f352106bc Mon Sep 17 00:00:00 2001 From: Beau-zo Date: Wed, 4 Mar 2026 19:57:05 +1000 Subject: [PATCH] Not PHP, it be bash --- docs/linux/includes/odbc-ubuntu.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/linux/includes/odbc-ubuntu.md b/docs/linux/includes/odbc-ubuntu.md index 261bd2ed8a5..8fb7870de4c 100644 --- a/docs/linux/includes/odbc-ubuntu.md +++ b/docs/linux/includes/odbc-ubuntu.md @@ -142,14 +142,14 @@ Use the following steps to install the **mssql-tools18** for [!INCLUDE [sssql25- To make **sqlcmd** and **bcp** accessible from the bash shell for login sessions, modify your `PATH` in the `~/.bash_profile` file with the following command: - ```php + ```bash echo 'export PATH="$PATH:/opt/mssql-tools18/bin"' >> ~/.bash_profile source ~/.bash_profile ``` To make **sqlcmd** and **bcp** accessible from the bash shell for interactive/non-login sessions, modify the `PATH` in the `~/.bashrc` file with the following command: - ```php + ```bash echo 'export PATH="$PATH:/opt/mssql-tools18/bin"' >> ~/.bashrc source ~/.bashrc ```