• create

    From Benny Pedersen@39:14/0 to All on Mon Sep 8 07:26:18 2014
    Hello All!


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/3.14.16-gentoo (i686))
    * Origin: duggi.junc.org where qico is waiting (39:14/0)
  • From Paul Hayton@39:970/0 to Benny Pedersen on Mon Sep 8 19:45:00 2014
    On 09/08/14, Benny Pedersen pondered and said...

    Hello All!

    Hello again.


    `I'm not expendable, I'm not stupid, and I'm not going' - Kerr Avon, Blake's 7

    --- Mystic BBS v1.10 A51 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (39:970/0)
  • From Benny Pedersen@39:14/0 to Paul Hayton on Fri Sep 12 21:09:36 2014
    Hello Paul!

    08 Sep 2014 19:45, Paul Hayton wrote to Benny Pedersen:

    Hello again.

    good to see it atleast works here :=)


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/3.14.16-gentoo (i686))
    * Origin: duggi.junc.org where qico is waiting (39:14/0)
  • From Paul Hayton@39:970/0 to Benny Pedersen on Sat Sep 13 10:40:00 2014
    On 09/12/14, Benny Pedersen pondered and said...

    good to see it atleast works here :=)

    Oh yes, it's just fine... I'm not really a coder, are you?


    `I'm not expendable, I'm not stupid, and I'm not going' - Kerr Avon, Blake's 7

    --- Mystic BBS v1.10 A52 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (39:970/0)
  • From Benny Pedersen@39:14/0 to Paul Hayton on Sat Sep 13 02:23:06 2014
    Hello Paul!

    13 Sep 2014 10:40, Paul Hayton wrote to Benny Pedersen:

    good to see it atleast works here :=)
    Oh yes, it's just fine... I'm not really a coder, are you?

    maybe why lha does not work for you ? :=)

    ----- packers_husky begins -----

    Pack lha lha -ad $a $f
    Pack rar rar a -std -ep -inul -ver2 -vn $a $f
    Pack zip zip -9 -j -q $a $f

    DefArcmailSize 1024
    MinDiskFreeSpace 10
    packNetMailOnScan off

    Unpack "arc x $a $p'*.*' $f" 0 1a
    Unpack "lha -eifw=$p $a $f" 2 2d6c68
    Unpack "unrar e -y $a $p $f \* > /dev/null" 0 52617221
    unpack "unzip -joLqq $a -d $p $f" 0 504b0304
    Unpack "unace e $a $p $f \* > /dev/null" 7 2A2A4143452A2A
    Unpack "7z e -o=$p -w=/tmp $a $f" 0 377A
    ----- packers_husky ends -----

    i remember lha was tricky, but the abovee settings works for nodelists here

    what options are other using ?


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/3.14.16-gentoo (i686))
    * Origin: duggi.junc.org where qico is waiting (39:14/0)
  • From Paul Hayton@39:970/0 to Benny Pedersen on Sat Sep 13 20:36:02 2014
    On 09/13/14, Benny Pedersen pondered and said...

    Oh yes, it's just fine... I'm not really a coder, are you?

    maybe why lha does not work for you ? :=)

    Can't see why that would impact on calling compression software from acommand line prompt... I suppose we could always wrap it in some old school .bat
    files with a few 'if' and 'then' statements ;-p


    `I'm not expendable, I'm not stupid, and I'm not going' - Kerr Avon, Blake's 7

    --- Mystic BBS v1.10 A52 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (39:970/0)
  • From Benny Pedersen@39:14/0 to Paul Hayton on Sun Sep 14 21:55:34 2014
    Hello Paul!

    13 Sep 2014 20:36, Paul Hayton wrote to Benny Pedersen:

    I suppose we could always wrap it in some old school
    .bat files with a few 'if' and 'then' statements ;-p

    ----- unpacker.sh begins -----

    echo "Unpacking.."
    function locate_exe() {
    EXE=`whereis -b $1|cut -d ' ' -f 2`
    }

    ; cd $INBOUND

    for i in `find -regextype posix-egrep -regex "^.*\.(mo|tu|we|th|fr|sa|su)[0-9]$"|xargs`
    do
    FOUT=`file $i|cut -f 2 -d ' '`

    case $FOUT in
    "LHa")
    locate_exe "lha"
    $EXE x $i
    ;;
    "Zip")
    locate_exe "unzip"
    $EXE -oj $i
    ;;
    "ARJ")
    locate_exe "arj"
    $EXE e $i
    ;;
    "RAR")
    locate_exe "unrar"
    $EXE $i
    ;;
    esac

    if [ $? == 0 ];
    then
    rm $i
    fi
    done

    ----- unpacker.sh ends -----

    use it at own risk :)


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/3.14.16-gentoo (i686))
    * Origin: duggi.junc.org where qico is waiting (39:14/0)
  • From Paul Hayton@39:970/0 to Benny Pedersen on Mon Sep 15 12:11:32 2014
    On 09/14/14, Benny Pedersen pondered and said...

    use it at own risk :)

    Thanks Benny, I'll give it a whirl. :-)


    `I'm not expendable, I'm not stupid, and I'm not going' - Kerr Avon, Blake's 7

    --- Mystic BBS v1.10 A52 (Windows)
    * Origin: Agency BBS | telnet://agency.bbs.geek.nz (39:970/0)
  • From Benny Pedersen@39:140/0 to Paul Hayton on Tue Jan 16 05:56:46 2018
    Hello Paul!

    15 Sep 2014 12:11, Paul Hayton wrote to Benny Pedersen:

    unpacker.sh
    use it at own risk :)
    Thanks Benny, I'll give it a whirl. :-)

    -+- Mystic BBS v1.10 A52 (Windows)

    does it work on windows ?


    Regards Benny

    ... there can only be one way of life, and it works :)

    --- Msged/LNX 6.2.0 (Linux/4.9.76-gentoo (i686))
    * Origin: I will always keep a PC running CPM 3.0 (39:140/0)