checkbashisms - check for bashisms in /bin/sh scripts
| Use Case | Command | Description |
|---|---|---|
| Check a script for bashisms | checkbashisms script.sh | Basic check for possible bashisms in a POSIX shell script |
| Check with strict POSIX (includes -n) | checkbashisms --posix script.sh | Enforce stricter POSIX compliance, flags nonβPOSIX features allowed by Debian Policy |
Check echo -n usage | checkbashisms --newline script.sh | Specifically flag extensions like echo -n not required by POSIX |
| Force check all scripts | checkbashisms --force script.sh | Override shebang detection and check even if script appears to be bash or a wrapper |
| Linter mode (editor integration) | checkbashisms --lint script.sh | Output warnings in a parseable format: filename:line:1: warning: ... |
| Show extra context | checkbashisms --extra script.sh | Highlight lines that donβt contain bashisms but help identify false positives |
| Stop at first error | checkbashisms --early-fail script.sh | Exit immediately after the first found bashism |
checkbashisms script ...
checkbashisms --help|--version
checkbashisms, based on one of the checks from the lintian system, performs basic checks on /bin/sh shell scripts for the possible presence of bashisms. It takes the names of the shell scripts on the command line, and outputs warnings if possible bashisms are detected.
Note that the definition of a bashism in this context roughly equates to βa shell feature that is not required to be supported by POSIXβ; this means that some issues flagged may be permitted under optional sections of POSIX, such as XSI or User Portability.
In cases where POSIX and Debian Policy disagree, checkbashisms by default allows extensions permitted by Policy but may also provide options for stricter checking.
Show a summary of options.
Check for βecho -nβ usage (non POSIX but required by Debian Policy 10.4).
Check for issues which are non POSIX but required to be supported by Debian Policy 10.4 (implies -n).
Force each script to be checked, even if it would normally not be (for instance, it has a bash or non POSIX shell shebang or appears to be a shell wrapper).
Act like a linter, for integration into a text editor. Possible bashisms will be printed in stdout, like so:
{filename}:{lineno}:1: warning: possible bashism; {explanation}
Highlight lines which, whilst they do not contain bashisms, may be useful in determining whether a particular issue is a false positive which may be ignored. For example, the use of $BASH_ENV may be preceded by checking whether $BASH is set.
Exit right after a first error is seen.
Show version and copyright information.
The exit value will be 0 if no possible bashisms or other problems were detected. Otherwise it will be the sum of the following error values:
1 β A possible bashism was detected.2 β A file was skipped for some reason, for example, because it was unreadable or not found. The warning message will give details.4 β No bashisms were detected in a bash script.checkbashisms was originally written as a shell script by Yann Dirson <dirson AT debian.org> and rewritten in Perl with many more features by Julian Gilbey <jdg AT debian.org>.
Generated by phpman v4.9.26-5-g7740029 Author: Che Dong Under GNU General Public License
2026-08-16 09:00 @2600:1f28:365:80b0:7cb9:fb:26c1:e368
CrawledBy CCBot/2.0 (https://commoncrawl.org/faq/)