1. Home
  2. Bash
  3. Bash Tutorial
  4. Bash – Include Files

Bash – Include Files

Include Files in Bash

Similar to other programming languages which allow to include other files to a file, Bash scripting also allows to include (source) another shell script file to script file.

For example, to include config.sh script to current script file use following syntax, where config.sh is available in the same directory of the current script.

Include Shell Script in Other Shell Script

For this example, First, I have created a data.sh file with the following content.

Now create another file show.sh, which includes data.sh file.

Execute script show.sh in a terminal and view the results:

./show.sh

Welcome TecAdmin
Your id is 100
Tags , , ,