mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
15 lines
394 B
Bash
Executable File
15 lines
394 B
Bash
Executable File
function showDeps {
|
|
echo "==== begin $1 =================================="
|
|
find $1 -name "*.go" |\
|
|
xargs grep \"sigs.k8s.io/kustomize/api/ |\
|
|
sed 's|:\s"| |' |\
|
|
sed 's|"$||' |\
|
|
awk '{ printf "%60s %s\n", $2, $1 }' |\
|
|
sed 's|sigs.k8s.io/kustomize/api/||' |\
|
|
sort | uniq
|
|
echo "==== end $1 =================================="
|
|
}
|
|
|
|
showDeps ./plugin
|
|
#showDeps ./kustomize
|