blob: d632f7cec7593fd7e06748523f9c9641420e3e65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# GN1 Slowness
GN1 needs to clean up the following
```
GNRoot="/gnshare/gn"
find $GNRoot/web/tmp -mmin +100 -exec rm -rfv {} \;
find $GNRoot/web/image -mmin +100 -exec rm -rfv {} \;
mkdir -p $GNRoot/web/tmp
mkdir -p $GNRoot/web/image
```
Note that the -delete switch is much faster than -exec, so
```
find $GNRoot/web/image -mmin +100 -delete
```
|