public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* How to read the source of HTML files in Cygwin?
@ 2001-09-17  0:51 m_shanmugasundaram.cgmaersk
  2001-09-17  0:59 ` egor duda
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: m_shanmugasundaram.cgmaersk @ 2001-09-17  0:51 UTC (permalink / raw)
  To: cygwin

Hi,
     I have a file named Beejs guide to network programming.htm in a
particular directory. I wanted to view the source of the html file. Under
cygwin i don't know how to do it. I tried typing vi Beejs guide to network
programming.htm,  but unable to read the source.

     I searched the web and also the cygwin FAQ. I think i missed
something. Any help is appreciated.

Thanks in advance

Cheers
Shan



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: How to read the source of HTML files in Cygwin?
  2001-09-17  0:51 How to read the source of HTML files in Cygwin? m_shanmugasundaram.cgmaersk
@ 2001-09-17  0:59 ` egor duda
  2001-09-17  1:16 ` Ajit George (Kurian Inc.)
  2001-09-17  5:37 ` Gerrit P. Haase
  2 siblings, 0 replies; 8+ messages in thread
From: egor duda @ 2001-09-17  0:59 UTC (permalink / raw)
  To: m_shanmugasundaram.cgmaersk; +Cc: cygwin

Hi!

Monday, 17 September, 2001 m_shanmugasundaram.cgmaersk@maerskdata.dk m_shanmugasundaram.cgmaersk@maerskdata.dk wrote:

mcmd>      I have a file named Beejs guide to network programming.htm in a
mcmd> particular directory. I wanted to view the source of the html file. Under
mcmd> cygwin i don't know how to do it. I tried typing vi Beejs guide to network
mcmd> programming.htm,  but unable to read the source.

welcome to the world of command line. if file name contains spaces,
enclose it into double quotes like this: 

vi "Beejs guide to network programming.htm"

Egor.            mailto:deo@logos-m.ru ICQ 5165414 FidoNet 2:5020/496.19


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: How to read the source of HTML files in Cygwin?
  2001-09-17  0:51 How to read the source of HTML files in Cygwin? m_shanmugasundaram.cgmaersk
  2001-09-17  0:59 ` egor duda
@ 2001-09-17  1:16 ` Ajit George (Kurian Inc.)
  2001-09-17  5:37 ` Gerrit P. Haase
  2 siblings, 0 replies; 8+ messages in thread
From: Ajit George (Kurian Inc.) @ 2001-09-17  1:16 UTC (permalink / raw)
  To: m_shanmugasundaram.cgmaersk, cygwin

Quote it:

vi 'Beejs guide to network programming.thm'

Or use a regular expression:

vi Beejs*

You'll probably get a lot out of reading a book on Unix shells.

If you just want to read the file, you should probably use less, or at least
use vi in read-only mode:

less Beejs*
vi -R Beejs*



----- Original Message -----
From: <m_shanmugasundaram.cgmaersk@maerskdata.dk>
To: <cygwin@cygwin.com>
Sent: Sunday, September 16, 2001 11:19 PM
Subject: How to read the source of HTML files in Cygwin?


> Hi,
>      I have a file named Beejs guide to network programming.htm in a
> particular directory. I wanted to view the source of the html file. Under
> cygwin i don't know how to do it. I tried typing vi Beejs guide to network
> programming.htm,  but unable to read the source.
>
>      I searched the web and also the cygwin FAQ. I think i missed
> something. Any help is appreciated.
>
> Thanks in advance
>
> Cheers
> Shan
>
>
>
> --
> Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> Bug reporting:         http://cygwin.com/bugs.html
> Documentation:         http://cygwin.com/docs.html
> FAQ:                   http://cygwin.com/faq/
>
>


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: How to read the source of HTML files in Cygwin?
  2001-09-17  0:51 How to read the source of HTML files in Cygwin? m_shanmugasundaram.cgmaersk
  2001-09-17  0:59 ` egor duda
  2001-09-17  1:16 ` Ajit George (Kurian Inc.)
@ 2001-09-17  5:37 ` Gerrit P. Haase
  2 siblings, 0 replies; 8+ messages in thread
From: Gerrit P. Haase @ 2001-09-17  5:37 UTC (permalink / raw)
  To: m_shanmugasundaram.cgmaersk; +Cc: cygwin

m_shanmugasundaram.cgmaersk@m schrieb am 2001-09-17, 11:49:

>Hi,
>     I have a file named Beejs guide to network programming.htm in a
>particular directory. I wanted to view the source of the html file. Under
>cygwin i don't know how to do it. I tried typing vi Beejs guide to network
>programming.htm,  but unable to read the source.
>
>     I searched the web and also the cygwin FAQ. I think i missed
>something. Any help is appreciated.

You will need to quote the name:

$ vim "Beejs guide to network programming.htm"

Gerrit



-- 
=^..^=

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: How to read the source of HTML files in Cygwin?
@ 2001-09-17 21:01 m_shanmugasundaram.cgmaersk
  0 siblings, 0 replies; 8+ messages in thread
From: m_shanmugasundaram.cgmaersk @ 2001-09-17 21:01 UTC (permalink / raw)
  To: gp; +Cc: cygwin

Hi Gerrit,
     Thanks for the help. I am new to Unix. I am now able to read the
source files.

Cheers
Shan



                                                                                           
                    "Gerrit P.                                                             
                    Haase"               To:     m_shanmugasundaram.cgmaersk@maerskdata.dk 
                    <gp@familieha        cc:     cygwin@cygwin.com                         
                    ase.de>              Subject:     Re: How to read the source of HTML   
                                         files in Cygwin?                                  
                    17/09/01                                                               
                    06:08 PM                                                               
                    Please                                                                 
                    respond to gp                                                          
                                                                                           
                                                                                           


m_shanmugasundaram.cgmaersk@m schrieb am 2001-09-17, 11:49:

>Hi,
>     I have a file named Beejs guide to network programming.htm in a
>particular directory. I wanted to view the source of the html file. Under
>cygwin i don't know how to do it. I tried typing vi Beejs guide to network
>programming.htm,  but unable to read the source.
>
>     I searched the web and also the cygwin FAQ. I think i missed
>something. Any help is appreciated.

You will need to quote the name:

$ vim "Beejs guide to network programming.htm"

Gerrit



--
=^..^=





--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: How to read the source of HTML files in Cygwin?
@ 2001-09-17  1:53 m_shanmugasundaram.cgmaersk
  0 siblings, 0 replies; 8+ messages in thread
From: m_shanmugasundaram.cgmaersk @ 2001-09-17  1:53 UTC (permalink / raw)
  To: gajit; +Cc: cygwin

Hi George,
     Thanks for the help. I am new to unix. Now iam able to read the source
of the html files.
Brgds
Shan



                                                                                           
                    "Ajit George                                                           
                    \(Kurian Inc.        To:                                               
                    \)"                  <m_shanmugasundaram.cgmaersk@maerskdata.dk>,      
                    <gajit@kurian        <cygwin@cygwin.com>                               
                    inc.com>             cc:                                               
                                         Subject:     Re: How to read the source of HTML   
                    17/09/01             files in Cygwin?                                  
                    01:46 PM                                                               
                                                                                           
                                                                                           


Quote it:

vi 'Beejs guide to network programming.thm'

Or use a regular expression:

vi Beejs*

You'll probably get a lot out of reading a book on Unix shells.

If you just want to read the file, you should probably use less, or at
least
use vi in read-only mode:

less Beejs*
vi -R Beejs*



----- Original Message -----
From: <m_shanmugasundaram.cgmaersk@maerskdata.dk>
To: <cygwin@cygwin.com>
Sent: Sunday, September 16, 2001 11:19 PM
Subject: How to read the source of HTML files in Cygwin?


> Hi,
>      I have a file named Beejs guide to network programming.htm in a
> particular directory. I wanted to view the source of the html file. Under
> cygwin i don't know how to do it. I tried typing vi Beejs guide to
network
> programming.htm,  but unable to read the source.
>
>      I searched the web and also the cygwin FAQ. I think i missed
> something. Any help is appreciated.
>
> Thanks in advance
>
> Cheers
> Shan
>
>
>
> --
> Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> Bug reporting:         http://cygwin.com/bugs.html
> Documentation:         http://cygwin.com/docs.html
> FAQ:                   http://cygwin.com/faq/
>
>






--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: How to read the source of HTML files in Cygwin?
@ 2001-09-17  1:24 m_shanmugasundaram.cgmaersk
  0 siblings, 0 replies; 8+ messages in thread
From: m_shanmugasundaram.cgmaersk @ 2001-09-17  1:24 UTC (permalink / raw)
  To: flognat; +Cc: cygwin

Hi Andrew,
     THanks for the help. Now i am able to read the source.

Brgds
Shan
'


                                                                                              
                    Andrew Markebo                                                            
                    <flognat@flognat        To:     m_shanmugasundaram.cgmaersk@maerskdata.dk 
                    .myip.org>              cc:                                               
                    Sent by: Andrew         Subject:     Re: How to read the source of HTML   
                    Markebo                 files in Cygwin?                                  
                    <flognat@master>                                                          
                                                                                              
                                                                                              
                    17/09/01 01:29                                                            
                    PM                                                                        
                                                                                              
                                                                                              


This is up to the shell..

do something like

vi "Beejs guide to network programming.htm"

or

vi Beejs\ guide\ to\ network\ programming.htm

        /Andy

/ m_shanmugasundaram.cgmaersk@maerskdata.dk wrote:
| Hi,
|      I have a file named Beejs guide to network programming.htm in a
| particular directory. I wanted to view the source of the html file. Under
| cygwin i don't know how to do it. I tried typing vi Beejs guide to
network
| programming.htm,  but unable to read the source.
|
|      I searched the web and also the cygwin FAQ. I think i missed
| something. Any help is appreciated.
|
| Thanks in advance
|
| Cheers
| Shan
|
|
|
| --
| Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
| Bug reporting:         http://cygwin.com/bugs.html
| Documentation:         http://cygwin.com/docs.html
| FAQ:                   http://cygwin.com/faq/
|
|

--
 The eye of the beholder rests on the beauty!





--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: How to read the source of HTML files in Cygwin?
@ 2001-09-17  1:23 m_shanmugasundaram.cgmaersk
  0 siblings, 0 replies; 8+ messages in thread
From: m_shanmugasundaram.cgmaersk @ 2001-09-17  1:23 UTC (permalink / raw)
  To: egor duda; +Cc: cygwin

Hi Egor,
     Thanks for the help. Now i am able to read the source.

Brgds
Shan



                                                                                           
                    egor duda                                                              
                    <deo@logos-m.        To:     m_shanmugasundaram.cgmaersk@maerskdata.dk 
                    ru>                  cc:     cygwin@cygwin.com                         
                                         Subject:     Re: How to read the source of HTML   
                    17/09/01             files in Cygwin?                                  
                    01:27 PM                                                               
                    Please                                                                 
                    respond to                                                             
                    egor duda                                                              
                                                                                           
                                                                                           


Hi!

Monday, 17 September, 2001 m_shanmugasundaram.cgmaersk@maerskdata.dk
m_shanmugasundaram.cgmaersk@maerskdata.dk wrote:

mcmd>      I have a file named Beejs guide to network programming.htm in a
mcmd> particular directory. I wanted to view the source of the html file.
Under
mcmd> cygwin i don't know how to do it. I tried typing vi Beejs guide to
network
mcmd> programming.htm,  but unable to read the source.

welcome to the world of command line. if file name contains spaces,
enclose it into double quotes like this:

vi "Beejs guide to network programming.htm"

Egor.            mailto:deo@logos-m.ru ICQ 5165414 FidoNet 2:5020/496.19






--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2001-09-17 21:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-17  0:51 How to read the source of HTML files in Cygwin? m_shanmugasundaram.cgmaersk
2001-09-17  0:59 ` egor duda
2001-09-17  1:16 ` Ajit George (Kurian Inc.)
2001-09-17  5:37 ` Gerrit P. Haase
2001-09-17  1:23 m_shanmugasundaram.cgmaersk
2001-09-17  1:24 m_shanmugasundaram.cgmaersk
2001-09-17  1:53 m_shanmugasundaram.cgmaersk
2001-09-17 21:01 m_shanmugasundaram.cgmaersk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).