blob: 6e60c3c2eff12274d76deebeb01df97b79ae0de9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# GN1 Slowness
## Tags
* assigned: ??
* type: bug
* priority: high
* keywords: GN1
## Description
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
```
|