File: traps.sh.out

package info (click to toggle)
devscripts 2.21.3%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,044 kB
  • sloc: perl: 26,093; sh: 10,874; python: 2,502; makefile: 341; ansic: 11
file content (18 lines) | stat: -rw-r--r-- 913 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
possible bashism in bashisms/traps.sh line 3 (trap with ERR|DEBUG|RETURN):
trap foo ERR # BASHISM
possible bashism in bashisms/traps.sh line 4 (trap with ERR|DEBUG|RETURN):
trap foo RETURN # BASHISM
possible bashism in bashisms/traps.sh line 5 (trap with ERR|DEBUG|RETURN):
trap foo DEBUG # BASHISM
possible bashism in bashisms/traps.sh line 7 (trap with ERR|DEBUG|RETURN):
trap "echo BASHISM" ERR
possible bashism in bashisms/traps.sh line 8 (trap with ERR|DEBUG|RETURN):
trap "echo BASHISM" RETURN
possible bashism in bashisms/traps.sh line 9 (trap with ERR|DEBUG|RETURN):
trap "echo BASHISM" DEBUG
possible bashism in bashisms/traps.sh line 15 (trap with ERR|DEBUG|RETURN):
trap $(foo BASHISM) ERR
possible bashism in bashisms/traps.sh line 16 (trap with ERR|DEBUG|RETURN):
trap "$(foo BASHISM)" RETURN
possible bashism in bashisms/traps.sh line 17 (trap with ERR|DEBUG|RETURN):
trap "echo $foo BASHISM" DEBUG