8 lines
69 B
Bash
Executable File
8 lines
69 B
Bash
Executable File
#!/bin/sh
|
|
|
|
clear
|
|
|
|
find lsf.* -maxdepth 0 -amin +11 -print0 -delete
|
|
|
|
|