#!/bin/env bash
for branche in $(git branch | cut -c 3-)
do
echo "branch $branche detected"
git_05_delete_feature_branch.sh $branche
done