You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of `sort | uniq` (or worse: `uniq | sort`!), use `sort -u`.
Alsö, lose `tr '\n' ' '` as it does ń̥otḩing since `$IFS` contains both space and new line (and tab).
No need to pipe to `cat` then redirect to disk. Just redirect directly to the file without `cat` at all.
0 commit comments