6 lines
50 B
Bash
6 lines
50 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
find lsf.* -amin +11 -print0 -delete
|
||
|
|
||
|
|