X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcore%2Ffunctions.sh;h=fe56aea63a2624d73f5603b55264d0aa56064444;hb=bffe9fba70b7ea1ab1b5d963b811d4637b021ee1;hp=933a7fff410dad87698272ae558cbbb9589104bb;hpb=e7d0a463bc8f050dc5ec3d3c9a92444f19b720b7;p=feisty_meow.git diff --git a/scripts/core/functions.sh b/scripts/core/functions.sh index 933a7fff..fe56aea6 100644 --- a/scripts/core/functions.sh +++ b/scripts/core/functions.sh @@ -211,26 +211,6 @@ if [ -z "$skip_all" ]; then fi } - # buntar is a long needed uncompressing macro that feeds into tar -x. - # it takes a list of bz2 file names and extracts their contents into - # sequentially numbered directories. - function buntar() { - index=1 - for i in $*; do - mkdir buntar_$index - pushd buntar_$index &>/dev/null - file=$i - # if the filename has no directory component, we will assume it used to - # be above our unzipping directory here. - if [ "$(basename $file)" = $file ]; then - file=../$file - fi - bunzip2 -d -c $file | tar -xf - - popd &>/dev/null - index=$(expr $index + 1) - done - } - # trashes the .#blah files that cvs and svn leave behind when finding conflicts. # this kind of assumes you've already checked them for any salient facts. function clean_cvs_junk() {