re-structured
This commit is contained in:
3
bash/biggest_file_in_installed_deb.sh
Executable file
3
bash/biggest_file_in_installed_deb.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
# find the biggest file in an installed deb package:
|
||||
export PKG=vim; for i in $(dpkg -L $PKG) ; do if [[ -f "$i" ]] && [[ ! -L "$i" ]]; then ls -lh1 $i ;fi; done | sort -k 5 -hr | head -1 | cut -d " " -f 5,9-
|
||||
Reference in New Issue
Block a user