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
$ printf "foo | 2021\nfoo bar | 2022\n" | column -t -s '|'
foo 2021
foo bar 2022
$ printf "foo | 2021\nfoo \u200e bar | 2022\n" | column -t -s '|'
foo 2021
foo bar 2022
And since some goddamn uploaders :) sometimes accidentally put these marks in their titles, then, probably, before envoking column, it's worth a try to remove those <200e> (and may be others?) with tr or something else?
Not that it happens often, of course... :)
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
And since some goddamn uploaders :) sometimes accidentally put these marks in their titles, then, probably, before envoking
column
, it's worth a try to remove those<200e>
(and may be others?) withtr
or something else?Not that it happens often, of course... :)
The text was updated successfully, but these errors were encountered: