How to check if a Command Exists using Bash Script



If you want to check if a command exists or not using a bash script, you can take help from the below example.


Example:

#!/bin/bash

if command -v ls >/dev/null 2>&1; then
    echo "Command ls exists."
else
    echo "Command ls does not exist."
fi

if command -v clean >/dev/null 2>&1; then
    echo "Command clean exists."
else
    echo "Command clean does not exist."
fi
Output:
./bash_script.sh

Command ls exists.
Command clean does not exist.
Check if Command Exists bash Example
-

Facing issues? Have Questions? Post them here! I am happy to answer!


Author: Rakesh
Author Info:

Rakesh is a seasoned developer with over 10 years of experience in web and app development, and a deep knowledge of operating systems. Author of insightful How-To articles for Code2care.

Follow him on: X

Copyright © Code2care 2023 | Privacy Policy | About Us | Contact Us | Sitemap