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