4 lines
82 B
Plaintext
4 lines
82 B
Plaintext
|
#!/bin/sh
|
||
|
# Find and remove sizeable files
|
||
|
find -size +5M -print -exec rm -I {} +
|