Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
gboudrea
3 years agoOccasional Contributor
CLI 2: op run removes colors, ignores terminal size
ls outputs colors, and uses multiple columns:
But using op run, it doesn't:
1Password Version: CLI 2.1.0
Extension Version: Not Provided
OS Version: macOS
14 Replies
- gboudreaOccasional Contributor
Indeed, that fixes it.
I also noticed other commands (heroku, terraform) correctly detect that colors can be used with op run, and will use color with no additions in the command : i.e.op run --no-masking -- herokuwill output colors.Thanks.
- Former Member
Hey gboudrea, thank you for reaching out to us!
I think the problem here is thatlsdetectsop runto not be a terminal-type output, which is why colours are disabled by default (since the default setting for the--colorflag isauto).
Easiest way to fix this would be to include the--colorflag in your command, i.e.op run -- ls --color.
Please do let us know if this helps.Best,
Horia - gboudreaOccasional Contributor
Then the result shows in columns, but no colors.
- XIIISuper Contributor
What happens if you add
--no-maskingtoop run?