initial commit of file from CVS for smeserver-mock on Thu 26 Oct 11:20:16 BST 2023

This commit is contained in:
2023-10-26 11:20:16 +01:00
parent 0fb71cc6e5
commit 00b6cc6808
21 changed files with 1655 additions and 2 deletions

13
root/usr/bin/cleantree Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
#find . -regex .*patch|cut -f2 -d/>~filetoremove
for f in `find . -regex .*patch |cut -f2 -d/`
do
echo "Processing $f"
# do something on $f
rm -f $f
cvs remove $f
done
cvs commit -m "cleaning tree from patchs"