在Shell腳本中,set -e的作用是讓腳本在任意命令執(zhí)行失?。ǚ祷胤橇銧顟B(tài)碼)時(shí)立即停止運(yùn)行。默認(rèn)情況下,Bash腳本會(huì)繼續(xù)執(zhí)行后續(xù)命令,即使某個(gè)命令已失敗,這可能導(dǎo)致錯(cuò)誤累積或產(chǎn)生意外結(jié)果。使用set -e后,腳本會(huì)在第一個(gè)失敗的命令處終止,例如:腳本執(zhí)行到false命令后將停止,后續(xù)命令不會(huì)運(yùn)行。然而,set -e并非完全可靠,存在一些例外情況:1. if條件中的命令不會(huì)觸發(fā)退出;2. 后接|| true的命令不會(huì)導(dǎo)致腳本退出;3. 管道命令中只有最后一個(gè)命令失敗才會(huì)觸發(fā)退出。為增強(qiáng)腳本健壯性,可結(jié)合set -o pipefail確保管道中任一命令失敗即退出。適合在自動(dòng)化部署或安裝腳本中使用,避免錯(cuò)誤擴(kuò)散;而在交互式腳本或需手動(dòng)處理錯(cuò)誤的場(chǎng)景中應(yīng)避免使用,建議顯式檢查返回碼進(jìn)行處理。
In a shell script, set -e
tells the shell to stop executing the script immediately if any command exits with an error (i.e., returns a non-zero status). This is useful for making scripts safer by preventing them from continuing when something goes wrong.
Stops Script on First Error
By default, Bash scripts continue running even if one of the commands fails. That can lead to unexpected results or compound errors.
With set -e
, as soon as a command fails, the script stops. For example:
#!/bin/bash set -e echo "Starting" false echo "This line won't run"
The output would be:
Starting
And then the script exits after false
causes an error.
Note: Some commands might still continue depending on context — more on that in the next section.
Exceptions and Gotchas
Just because you use set -e
doesn’t mean every failed command will stop the script. There are a few important exceptions:
- Commands in
if
conditions don’t triggerset -e
. That’s intentional — you're usually checking whether something failed. - Commands followed by
|| true
won’t cause the script to exit either. - Pipelines like
command1 | command2
only triggerset -e
if the last command in the pipeline fails.
So, while set -e
helps catch many issues, it's not foolproof. You still need to be careful about how you structure your commands.
If you want stricter behavior, consider combining it with other options like set -o pipefail
to make pipelines fail the script if any part fails.
When to Use It (and When Not To)
Use set -e
when writing automation scripts where errors should stop execution — like deployment or setup scripts.
Avoid using it in interactive scripts or cases where you expect some failures and want to handle them manually. In those situations, it's better to check return codes explicitly:
some_command if [ $? -ne 0 ]; then echo "Something went wrong, but I'll handle it here." fi
Also, keep in mind that not all shells behave the same way with set -e
, so if portability matters, test carefully.
It’s a handy flag but not magic — basically just makes scripts bail faster when things go south.
The above is the detailed content of What does set -e do in a shell script?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

When encountering DNS problems, first check the /etc/resolv.conf file to see if the correct nameserver is configured; secondly, you can manually add public DNS such as 8.8.8.8 for testing; then use nslookup and dig commands to verify whether DNS resolution is normal. If these tools are not installed, you can first install the dnsutils or bind-utils package; then check the systemd-resolved service status and configuration file /etc/systemd/resolved.conf, and set DNS and FallbackDNS as needed and restart the service; finally check the network interface status and firewall rules, confirm that port 53 is not

As a system administrator, you may find yourself (today or in the future) working in an environment where Windows and Linux coexist. It is no secret that some big companies prefer (or have to) run some of their production services in Windows boxes an

Built on Chrome’s V8 engine, Node.JS is an open-source, event-driven JavaScript runtime environment crafted for building scalable applications and backend APIs. NodeJS is known for being lightweight and efficient due to its non-blocking I/O model and

In Linux systems, 1. Use ipa or hostname-I command to view private IP; 2. Use curlifconfig.me or curlipinfo.io/ip to obtain public IP; 3. The desktop version can view private IP through system settings, and the browser can access specific websites to view public IP; 4. Common commands can be set as aliases for quick call. These methods are simple and practical, suitable for IP viewing needs in different scenarios.

Linuxcanrunonmodesthardwarewithspecificminimumrequirements.A1GHzprocessor(x86orx86_64)isneeded,withadual-coreCPUrecommended.RAMshouldbeatleast512MBforcommand-lineuseor2GBfordesktopenvironments.Diskspacerequiresaminimumof5–10GB,though25GBisbetterforad

Written in C, MySQL is an open-source, cross-platform, and one of the most widely used Relational Database Management Systems (RDMS). It’s an integral part of the LAMP stack and is a popular database management system in web hosting, data analytics,

Ubuntu has long stood as a bastion of accessibility, polish, and power in the Linux ecosystem. With the arrival of Ubuntu 25.04, codenamed “Plucky Puffin”, Canonical has once again demonstrated its commitment to delivering a

MongoDB is a high-performance, highly scalable document-oriented NoSQL database built to manage heavy traffic and vast amounts of data. Unlike traditional SQL databases that store data in rows and columns within tables, MongoDB structures data in a J
