How to get a single pods namespace and name in the below format `<namespac . . .

Chaitanya Korupolu:
how to get a single pods namespace and name in the below format
<namespace>/<pod name>

Vinay Kumar:
k get po -o jsonpath=‘{range .items[]} {.metadata.namespace}{“/”}{.spec.containers[].name}{“\n”}{end}’

Chaitanya Korupolu:
Thanks vinay