Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9187227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:43:01+00:00 2026-06-17T19:43:01+00:00

I have the following in my .bashrc to print a funny looking message: fortune

  • 0

I have the following in my .bashrc to print a funny looking message:

fortune | cowsay -W 65

I don’t want this line to run if the computer doesn’t have fortune or cowsay installed.

What’s the best or simplest way to perform this check?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T19:43:02+00:00Added an answer on June 17, 2026 at 7:43 pm

    You can use type or which or hash to test if a command exists.

    From all of them, which works only with executables, we’ll skip it.

    Try something on the line of

    if type fortune &> /dev/null; then
        if type cowsay &> /dev/null; then
            fortune | cowsay -W 65
        fi
    fi
    

    Or, without ifs:

    type fortune &> /dev/null && type cowsay &> /dev/null && (fortune | cowsay -W 65)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following line in my .bashrc: APP_HOME=/home/user/app/1.0;export APP_HOME; ## ADDED BY INSTALLER
I have the following in a file which is sourced both by .bashrc and
I have this following simple program: int main() { char* v = getenv(TEST_VAR); cout
I have written the following .bashrc : # .bashrc # Source global definitions if
I have the following python function that allows me to run shell commands from
I have the following on my .bashrc : JAVA_HOME=/usr/bin/java GRAILS_HOME=/root/grails PATH=$PATH:$JAVA_HOME:$GRAILS_HOME/bin export JAVA_HOME export
In my .bashrc file I have included the following: GIT_PS1_SHOWDIRTYSTATE=true GIT_PS1_SHOWUNTRACKEDFILES=true GIT_PS1_SHOWUPSTREAM=verbose git export
have following directory structure src/com src/META-INF/MANIFEST.MF src/META-INF/spring src/META-INF/spring/context.xml now when i run the script,
So currently I have included the following in my .bashrc file. export RUBYLIB=/home/git/project/app/helpers I
I have the following in my .bashrc file: # Git Bash Completion source $HOME/.git_completion

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.