From help set
:
-e Exit immediately if a command exits with a non-zero status.
But it’s considered bad practice by some (bash FAQ and irc freenode #bash FAQ authors). It’s recommended to use:
trap 'do_something' ERR
to run do_something
function when errors occur.
See http://mywiki.wooledge.org/BashFAQ/105
Related Posts:
- What does set -e mean in a bash script?
- “sed” command in bash
- Pseudo-terminal will not be allocated because stdin is not a terminal
- Given two directory trees, how can I find out which files differ by content?
- Pseudo-terminal will not be allocated because stdin is not a terminal
- ./configure : /bin/sh^M : bad interpreter
- What is the difference between “#!/usr/bin/env bash” and “#!/usr/bin/bash”?
- Is there a “goto” statement in bash?
- Writing a simple shell in C using fork/execvp
- chmod: changing permissions of ‘my_script.sh’: Operation not permitted
- How do I know the script file name in a Bash script?
- What is “-bash: !”: event not found”
- How to add a timestamp to bash script log?
- Colors in bash after piping through less?
- How to run command as user who has /usr/sbin/nologin as Shell?
- How do I deal with a filename that starts with the hyphen (-) character?
- Bash: No such file or directory?
- What’s a .sh file?
- What’s a .sh file?
- Ubuntu says “bash: ./program Permission denied” [closed]
- Why do you need to put #!/bin/bash at the beginning of a script file?
- “Couldn’t find a file descriptor referring to the console” on Ubuntu bash on Windows
- gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now
- How can I recursively find all files in current and subfolders based on wildcard matching?
- How to perform grep operation on all files in a directory?
- Pass a password to ssh in pure bash
- subprocess.Popen(): OSError: [Errno 8] Exec format error in python?
- How to substitute shell variables in complex text files
- -bash: syntax error near unexpected token `newline’ for display command
- How can I recursively find all files in current and subfolders based on wildcard matching?
- How do I use grep to search the current directory for all files having the a string “hello” yet display only .h and .cc files?
- Curl command for https ( SSL )
- How to exclude a directory in find . command
- How can I declare and use Boolean variables in a shell script?
- How to exclude a directory in find . command
- How can I declare and use Boolean variables in a shell script?
- Shell command to tar directory excluding certain files/folders
- Explaining the ‘find -mtime’ command
- How does “cat << EOF" work in bash?
- How to cat <
> a file containing code? - How can I kill a process by name instead of PID, on Linux?
- Extract file basename without path and extension in bash
- mv: cannot stat error : No such file or directory error
- Diff command along with Grep gives “Binary file (standard input) matches”
- screen Cannot open your terminal ‘/dev/pts/0’ – please check
- Trying to use bash on Windows and got no installed distributions message
- -bash: fork: Cannot allocate memory
- Bash script: bad interpreter
- Implementing shell in C and need help handling input/output redirection
- How to count lines in a document?
- What does `set -x` do?
- Command to change the default home directory of a user
- How to get the process ID to kill a nohup process?
- Implementation of multiple pipes in C
- What does “&” at the end of a linux command mean?
- tar: add all files and directories in current directory INCLUDING .svn and so on
- Syntax error near unexpected token ‘then’
- “find: paths must precede expression:” How do I specify a recursive search that also finds files in the current directory?
- Copy multiple files from one directory to another from Linux shell
- Bash script prints “Command Not Found” on empty lines
- source command not found in sh shell
- How to use sed to extract substring
- Pipe to/from the clipboard in a Bash script
- Linux Bash: Move multiple different files into same directory
- Difference between sh and Bash
- How do I write stderr to a file while using “tee” with a pipe?
- How to include file in a bash shell script
- How to enable Bash in Windows 10 developer preview?
- What does ‘bash -c’ do?
- bash sh – command not found
- How can I sort du -h output by size
- What are the functional differences between .profile .bash_profile and .bashrc
- How to run a command multiple times, using bash shell?
- Shell command to monitor changes in a file
- How do I prevent accidental rm -rf /*?
- How do I sleep for a millisecond in bash or ksh
- What does ‘set -e’ do, and why might it be considered dangerous?
- What’s the best way to check if a volume is mounted in a Bash script?
- Keeping a linux process running after I logout
- What useful things can one add to one’s .bashrc? [closed]
- How can I kill all stopped jobs?
- Linux command line best practices and tips?
- How to get pid of just started process
- Can you have more than one ~/.ssh/config file?
- SSH from A through B to C, using private key on B [closed]
- How can I fully log all bash scripts actions?
- Is there a way to do a remote “ls” much like “scp” does a remote copy?
- How to apply a filter to real time output of `tail -f `?
- How to remove invalid characters from filenames?
- zcat/gzcat works in linux, not on osx. general linux/osx compatibility
- How do I join two named pipes into single input stream in linux
- Difference between wait and sleep
- Multi-line string with extra space (preserved indentation)
- SSH using python script
- Changing the resolution of a VNC session in linux
- What is difference between arm64 and armhf?
- standard_init_linux.go:178: exec user process caused “exec format error”
- Variable interpolation in the shell
- Using ls to list directories and their total sizes
- how to search for a directory from the terminal in ubuntu