1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

aliases: re-columnate zl output to remove big space

This commit is contained in:
Joe Groocock 2018-12-14 15:58:45 +00:00
parent 89b9222b7c
commit ed9d50d68e
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -266,7 +266,7 @@ alias zfs='sudo zfs'
alias zpool='sudo zpool'
alias z=zfs
alias zp=zpool
zl() { (set -o pipefail; command zfs list $@ | grep -Ev 'docker/[0-9a-f]{64}'); return $?; }
zl() { (set -o pipefail; command zfs list $@ | grep -Ev 'docker/[0-9a-f]{64}' | column -t -R 2,3,4); return $?; }
_zl() { _zfs "list $@"; }
# General Aliases