Re: .htaccess Authentication Problem

2003-07-31 Thread Christian Paul
Am Mittwoch, 30. Juli 2003 22:02 schrieb Real Cucumber: > Hi, > > Running Redhat 8.0 here... > > I've setup a .htaccess file /var/www/html/.htaccess > > I've also setup a passwords file /usr/local/apache/password/passwords > [..] Did you encrypt your

Re: Print the first column of a file

2003-07-29 Thread Christian Paul
27;gawk'? I need to learn how to use > > those anyways :) > > Yes. > > $ cat /var/log/httpd/access_log | awk '{print $1}' | sort | uniq ..useless use of cat: awk '{print $1}' /var/log/httpd/access_log | sort | uniq is enough. Christian Paul -- /&qu

Re: what is .bz2 extension??

2003-07-11 Thread Christian Paul
work, how can i > extract this files. > bunzip2 -c xyz-1.0.0.tar.bz2 | tar xf - works for me. -- Christian Paul [EMAIL PROTECTED] -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED] https://www.redhat.com/mailman/listinfo/redhat-list

Re: list folder size

2003-04-01 Thread Christian Paul
Am Dienstag, 1. April 2003 20:37 schrieb J.Slim: > I've been reading all the man pages I though might clue me in but I can't > find a command to list the total size of a folders contents. Anybody? hello, try du -s -h /folder/folder and man du -- Christian Pa