1
0

zsh: update
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-03-04 15:35:55 +03:00
parent 25123cece2
commit 8834da817c
20 changed files with 265 additions and 49 deletions

View File

@@ -12,19 +12,19 @@ alias pod-logs='podman logs '
sko-inspect() {
local i
i="${1:?}" ; shift
command skopeo inspect "docker://$i" "$@"
command skopeo inspect "$@" "docker://$i"
}
sko-list-tags() {
local i
i="${1:?}" ; shift
command skopeo list-tags "docker://$i" "$@"
command skopeo list-tags "$@" "docker://$i"
}
pod-dive() {
local i
i="${1:?}" ; shift
command dive "podman://$i" "$@"
command dive "$@" "podman://$i"
}
jq-visual() {