From 385cc92bc91e1a6c3724085c060e76bf40c13ed3 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Tue, 15 Oct 2024 16:08:16 +0200 Subject: Import PhD thesis --- summary/clean.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 summary/clean.sh (limited to 'summary/clean.sh') diff --git a/summary/clean.sh b/summary/clean.sh new file mode 100755 index 0000000..0553bcc --- /dev/null +++ b/summary/clean.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +to_remove=$(cat .gitignore) + +rm -f $to_remove +for subdir in $(ls -l src/ | grep '^d' | awk '{print $9}'); do + pushd src/$subdir >/dev/null + rm -f $to_remove + popd >/dev/null +done + +clear +ls -l -- cgit v1.2.3