mde / true

A JavaScript port of the Unix utility 'true'. Returns the Boolean value `true`
101 stars 26 forks source link

simplify cli #21

Open aleclarson opened 6 years ago

aleclarson commented 6 years ago

NodeJS programs have an exit code of zero by default, so there's no need for any code here.

mde commented 6 years ago

Brevity is the soul of wit, but now the CLI appears to be a no-op. We do need a functional CLI, to duplicate the behavior of Unix true utility.

aleclarson commented 6 years ago

man true describes the true command as "The true utility always returns with exit code zero."

A no-op accomplishes that. Am I missing something? :)