uni

Thing1's amazing uni repo
Log | Files | Refs | Submodules

commit ac9feca2d29707dc943c62560fe0711ec91265ab
parent 2d2038a75b2d48d9dd8211e8f281bec56c83f553
Author: thing1 <thing1@seacrossedlovers.xyz>
Date:   Sun, 24 May 2026 18:45:17 +0100

added exclude to clean, so it doesn't remove my project

Diffstat:
M.gitignore | 2--
Mclean | 2+-
2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -2,8 +2,6 @@ *.ps *.pdf *.html -!CS10120/project/*.html -!CS10120/project/blogs/*.html *.o *.out *.snm diff --git a/clean b/clean @@ -1,6 +1,6 @@ #!/bin/sh -names=$(find ./ | grep "\.html") +names=$(find ./ | grep "\.html" | grep -v "CS10120/project") for name in $names; do rm $name echo "removed ${name}"