1 2 3 4 5 6 7 8 9 10 11 12 13 14
   | #!/bin/bash
 
 
 
  for Repo in $* ; do   curl -s -S "https://registry.hub.docker.com/v2/repositories/library/$Repo/tags/" | \     sed -e 's/,/,\n/g' -e 's/\[/\[\n/g' | \     grep '"name"' | \     awk -F\" '{print $4;}' | \     sort -fu | \     sed -e "s/^/${Repo}:/" done
 
   |