While some of the answers posted here will help find what you seek, the following sub-command of git branch is a more suitable solution for your task.
While in master
one could run the command to enumerate the branches one could safely remove, like so:
git branch --merged
develop
fpg_download_links
* master
master_merge_static
# Delete local and remote tracking branches you don't want
git branch -d fpg_download_links
git push origin :fpg_download_links
git branch -d master_merge_static
git push origin :master_merge_static
# There is also a flag to specify remote branches in the output
git branch --remotes --merged