Linux Programmer | RHCE | RHCSA

Search This Blog

Thursday, 18 November 2021

Execute custom script as command.

Create bash script, 

Create file: script.sh

#!/bin/bash 

date echo "testing" 

 

 Apply executable permission.

# chmod 0777 script.sh
 

Move script to /usr/local/bin/

# mv script.sh /usr/local/bin/

 

Now you can execute script from anywhere.

# cd /home/

# script.sh

output:

Thu Nov 18 11:05:41 IST 2021

testing


No comments:

Post a Comment

Jupyterhub-kubernetes-setup

  Jupyterhub kubernetes setup Jupyerhub installation with Kubernetes: The setup is done through the official documentation - http...