Re: [Linuxcommand-discuss] Is anybody using Netscape 4.x anymore?
Brought to you by:
bshotts
|
From: Bruce B. <bbu...@ea...> - 2002-10-19 20:15:43
|
----- Original Message ----- From: "William Shotts" <bs...@pa...> To: <lin...@li...> Sent: Saturday, October 19, 2002 11:51 AM Subject: [Linuxcommand-discuss] Is anybody using Netscape 4.x anymore? > I am experimenting with a more style sheet oriented approach to coding > the Linuxcommand.org web pages, but since Netscape 4.x has such poor > support for CSS, I wanted to know if anybody uses Netscape 4.x rather > than something newer like Netscape 6.x or 7.x. > > I have an experimental, prototype page at: > > http://linuxcommand.org/experimental.html > > which demonstrates the new technique. It look like the old pages for the > most part but is a much cleaner to code and helps me achieve better > standards compliance. > - Hi Bill, Looks fine to me. But I'm using IE here and use w3m on Linux. The list on the upper left a.. LinuxCommand b.. Learning the shell c.. Writing shell scripts d.. Script library e.. SuperMan pages f.. Who, What, Where, Why only shows up from nuxCommand onward. Glad to know this is still happening. I am spread very thin at the moment and able to devote only a small amount of time to learning scripting. Have made some improvements to my file explorer, however: #!/bin/bash #fe by Bruce<+> gf () { select com in less zless file "ls -laF" w3m "rm -i" ; do $com $fname return done } while : ; do select fname in $HOME / EXIT $(ls -aF) ; do if [ "$fname" = EXIT ] ; then exit; fi if [ -f "$fname" ] ; then gf elif [ -d "$fname" ] ; then cd "$fname" echo "$PWD" break fi done done Bruce<+> - > ||||| William Shotts, Jr. (bshotts AT panix DOT com) > ||||| Be a Linux Commander! Follow me to http://linuxcommand.org > > > ------------------------------------------------------- > This sf.net email is sponsored by: > Access Your PC Securely with GoToMyPC. Try Free Now > https://www.gotomypc.com/s/OSND/DD > _______________________________________________ > Linuxcommand-discuss mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/linuxcommand-discuss |