A bash shell is considered as an interactive shell when it reads and writes data from a user's terminal. Most startup scripts examine the shell variable called PS1. Usually, PS1 is set in interactive shells, and it is unset in non-interactive shells.
Find out if this shell interactive using PS1
The syntax is as follows:
// Is this Shell Interactive?
[ -z "$PS1" ] && echo "Noop" || echo "Yes"
OR
[ -z "$PS1" ] && echo "This shell is not interactive" || echo "This shell is interactive"
OR
[ -z "$PS1" ] && die "This script is not designed to run from $SHELL" 1 || do_interacive_shell_stuff
You can use bash shell if..else..fi syntax as follows:
if [ -z "$PS1" ]; then die "This script is not designed to run from $SHELL" 1 else //call our function do_interacive_shell_stuff fi
From the bash reference manual
To determine within a startup script whether or not Bash is running interactively, test the value of the '-' special parameter. It contains i when the shell is interactive. For example:
case "$-" in *i*) echo "This shell is interactive" ;; *) echo "This shell is not interactive" ;; esac
tty command
You can also use tty command as follows:
tty -s && echo "This shell is interactive" || echo "This shell is not interactive" ;;
OR
ssh user@server1.cyberciti.biz tty -s && echo "This shell is interactive" || echo "This shell is not interactive" ;;
References:
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop












{ 3 comments… read them below or add one }
Whatever happened to the standard method of checking the fd ’0′ ???
if [ -t 0 ]; then
# do stuff
fi
Don’t you think that’s a better check that some env variable?
Hi,
Very useful article
Thanks a lot..
Full of holes and not reliable at all. PS1 can be defined by someone in their own .bashrc file for instance.
You’d have to stat what /dev/fd/0 points to, and sift out the text that is different.