Skip to content

Instantly share code, notes, and snippets.

@anmolsukki
Created May 5, 2020 14:02
Show Gist options
  • Save anmolsukki/d8962b2d8d1d8b2314df019f37a1ce42 to your computer and use it in GitHub Desktop.
Save anmolsukki/d8962b2d8d1d8b2314df019f37a1ce42 to your computer and use it in GitHub Desktop.
[ Shell Script ] Run Shell Script by using another Shell Script
# another shell script
echo "This script is succesfully running."
echo "Have Fun."
#!/bin/bash (call shell script to another shell script)
echo "This script is about to run another script."
sh ./another_script.sh
echo "This script has just run another script."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment