diff options
-rw-r--r-- | bashrc | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -16,6 +16,17 @@ diffWith() { ( gvim -f $diffFile ; rm $diffFile ) & } +showimage() { + ( + local pkg + pkg=$1 + pkg="${pkg:=*/*}" + cd /var/tmp/portage/$pkg-*/image || return 1 + find . -not -type d -print0 | xargs -0r ls -lvhF --color=auto + du -shc */* + ) +} + cov() { src=${1} src=$(realpath ${src:=$(pwd)}) |