aboutsummaryrefslogtreecommitdiff
path: root/clean.sh
blob: d37cd91acdd0a722fa143d22c409329d29184ed0 (plain)
1
2
3
4
5
6
#!/usr/bin/env bash
set -euxo pipefail
git status --porcelain=v1 --ignored -z \
| grep -z '^!!' \
| xargs -0 awk 'BEGIN { for(i = 1; i < ARGC; i++) printf "%s%c", substr(ARGV[i], 4), 0; }' \
| xargs -0 rm -r