Advertisement
Ichimonji10

Masked Return Values

Jul 27th, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.20 KB | None | 0 0
  1. #!/usr/bin/env bash
  2. # See: https://github.com/koalaman/shellcheck/wiki/SC2155
  3. func() { local var=$(ls foo); echo $?; }
  4. func  # returns 0
  5. func() { local var; var=$(ls foo); echo $?; }
  6. func  # returns 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement