How to get human-readable output on zfs diff ? #11785
-
Hi, I'm using OpenZFS 2.0.3 with Proxmox. Any path or file name with non-ascii characters with |
Beta Was this translation helpful? Give feedback.
Answered by
rincebrain
Mar 23, 2021
Replies: 1 comment
-
I personally use the following alias, though you probably shouldn't use it if untrusted input is part of your concerns. alias zfilt='while read -r LINE;do echo -e "${LINE}";done' Then you do zfs diff foo bar | zfilt |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
HiFiPhile
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I personally use the following alias, though you probably shouldn't use it if untrusted input is part of your concerns.
alias zfilt='while read -r LINE;do echo -e "${LINE}";done'
Then you do zfs diff foo bar | zfilt