Re: scripting help

1998-08-07 Thread Lee Brinton
sleep 5s let ITER=ITER+1 BYTES=`wc --bytes filename | awk -- {print $1}'` done cat filename -- Lee Brinton | [EMAIL PROTECTED] PGP public key @ http://www.icubed.com/~6xtippet/pgp-public-key.asc ---

RE: strcpy HELP!!!

1998-04-17 Thread Lee Brinton
memory of at least the length of the string pointed to by temp1 plus 1 byte to hold the string termination character '\0'. As in: temp2 = (char*)malloc(strlen(temp1) + 1); -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Lee Brinton | [EMAIL PROTECTED]