Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 1
    Welcome to Unix & Linux! Brevity is acceptable, but fuller explanations are better. Commented Aug 26, 2021 at 14:56
  • 1
    within [ .. ], you need quotes around the variable expansion to avoid issues with white space, and also = is the standard equality comparison. While == works in Bash and ksh, it doesn't in e.g. Dash, and it causes problems in zsh, and there's little reason for using it. Also, your code would be clearer if you indented it properly. And then there's the thing that I'm not sure if this answer gives anything on top of the previous ones. Commented Aug 26, 2021 at 17:11