3 lines
67 B
Bash
3 lines
67 B
Bash
|
#!/bin/bash
|
||
|
find $1 -type f -printf '%s %p\n'| sort -nr | head -30
|