Closed santhosh-tekuri closed 4 months ago
normally exit code 2 is used to denote Incorrect command (or argument) usage
the flag package from standard library also uses exit code 2
flag
currently this library is doing osExit(-1) which is resolving to 255 on my laptop. it might differ based on operating system.
osExit(-1)
255
normally exit code 2 is used to denote Incorrect command (or argument) usage
the
flag
package from standard library also uses exit code 2currently this library is doing
osExit(-1)
which is resolving to255
on my laptop. it might differ based on operating system.