ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] TELNET & BASH
@ 2003-04-29  9:35 Igo-aeroflot
  2003-04-29  9:42 ` [Comm] " Anton V. Boyarshinov
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Igo-aeroflot @ 2003-04-29  9:35 UTC (permalink / raw)
  To: community

Как в в командной строке сделать что то типа
echo 'get /index.php' | telnet ip 80
Идея в том что бы одной командой приконнектиться и сделать get /index.php



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

* [Comm] Re: TELNET & BASH
  2003-04-29  9:35 [Comm] TELNET & BASH Igo-aeroflot
@ 2003-04-29  9:42 ` Anton V. Boyarshinov
  2003-04-29  9:44 ` [Comm] " Епифанов Сергей
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Anton V. Boyarshinov @ 2003-04-29  9:42 UTC (permalink / raw)
  To: community

On Tue, 29 Apr 2003 13:35:17 +0400 Igo-aeroflot
 wrote:

> Как в в командной строке сделать что то типа
> echo 'get /index.php' | telnet ip 80
> Идея в том что бы одной командой приконнектиться и сделать get
> /index.php

apt-get install netcat

-- 
mailto:boyarsh@mail.ru
mailto:boyarsh@ru.echo.fr
 13:40:00  up 54 days, 20:07, 11 users,  load average: 0.08,
0.03, 0.01


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

* Re: [Comm] TELNET & BASH
  2003-04-29  9:35 [Comm] TELNET & BASH Igo-aeroflot
  2003-04-29  9:42 ` [Comm] " Anton V. Boyarshinov
@ 2003-04-29  9:44 ` Епифанов Сергей
  2003-04-29  9:45 ` Ilya Kuznecov
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Епифанов Сергей @ 2003-04-29  9:44 UTC (permalink / raw)
  To: community

В сообщении от 29 Апрель 2003 13:35 Igo-aeroflot написал:
> Как в в командной строке сделать что то типа
> echo 'get /index.php' | telnet ip 80
> Идея в том что бы одной командой приконнектиться и сделать get
> /index.php

ssh user@remotehost get /index.php

-- 
С уважением, Епифанов Сергей


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

* Re: [Comm] TELNET & BASH
  2003-04-29  9:35 [Comm] TELNET & BASH Igo-aeroflot
  2003-04-29  9:42 ` [Comm] " Anton V. Boyarshinov
  2003-04-29  9:44 ` [Comm] " Епифанов Сергей
@ 2003-04-29  9:45 ` Ilya Kuznecov
  2003-04-29  9:47 ` Епифанов Сергей
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Ilya Kuznecov @ 2003-04-29  9:45 UTC (permalink / raw)
  To: community

On Tue, 29 Apr 2003 13:35:17 +0400
Igo-aeroflot <igo@aeroflot-don.ru> wrote:

> Как в в командной строке сделать что то типа
> echo 'get /index.php' | telnet ip 80
> Идея в том что бы одной командой приконнектиться и сделать get /index.php

Часть подобных извращений делается через netcat.

--
chumpa, Cybernetic Humanoid Used for Mathematics and Potential Assassination
kuznecov@blok-caf.ru       http://chumpa.izhnet.ru     icq 122393064



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

* Re: [Comm] TELNET & BASH
  2003-04-29  9:35 [Comm] TELNET & BASH Igo-aeroflot
                   ` (2 preceding siblings ...)
  2003-04-29  9:45 ` Ilya Kuznecov
@ 2003-04-29  9:47 ` Епифанов Сергей
  2003-04-29  9:49 ` Igor Homyakov
  2003-04-29 10:53 ` [Comm] " Andrey Brindeew
  5 siblings, 0 replies; 7+ messages in thread
From: Епифанов Сергей @ 2003-04-29  9:47 UTC (permalink / raw)
  To: community

В сообщении от 29 Апрель 2003 13:35 Igo-aeroflot написал:
> Как в в командной строке сделать что то типа
> echo 'get /index.php' | telnet ip 80
> Идея в том что бы одной командой приконнектиться и сделать get
> /index.php
Ошибочка, не то написал,

вообще-то можно поглядеть на expect

-- 
С уважением, Епифанов Сергей


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

* Re: [Comm] TELNET & BASH
  2003-04-29  9:35 [Comm] TELNET & BASH Igo-aeroflot
                   ` (3 preceding siblings ...)
  2003-04-29  9:47 ` Епифанов Сергей
@ 2003-04-29  9:49 ` Igor Homyakov
  2003-04-29 10:53 ` [Comm] " Andrey Brindeew
  5 siblings, 0 replies; 7+ messages in thread
From: Igor Homyakov @ 2003-04-29  9:49 UTC (permalink / raw)
  To: community

* Igo-aeroflot <igo@aeroflot-don.ru> [030429 13:37]:
> Как в в командной строке сделать что то типа
> echo 'get /index.php' | telnet ip 80
> Идея в том что бы одной командой приконнектиться и сделать get /index.php

используйте netcat.

-- 
Igor Homyakov
<homyakov at altlinux dot ru>
http://counter.li.org/cgi-bin/runscript/display-person.cgi?user=190141


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

* [Comm] Re: TELNET & BASH
  2003-04-29  9:35 [Comm] TELNET & BASH Igo-aeroflot
                   ` (4 preceding siblings ...)
  2003-04-29  9:49 ` Igor Homyakov
@ 2003-04-29 10:53 ` Andrey Brindeew
  5 siblings, 0 replies; 7+ messages in thread
From: Andrey Brindeew @ 2003-04-29 10:53 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 409 bytes --]

On Tue, Apr 29, 2003 at 01:35:17PM +0400, Igo-aeroflot wrote:
> Как в в командной строке сделать что то типа
> echo 'get /index.php' | telnet ip 80
> Идея в том что бы одной командой приконнектиться и сделать get /index.php

Если установлен пакет perl-libwww-perl, то все очень просто:

GET http://ip/index.php

-- 
WBR, Andrey Brindeew.
"No one person can understand Perl culture completely"
(C) Larry Wall.

[-- Attachment #2: Type: application/pgp-signature, Size: 245 bytes --]

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

end of thread, other threads:[~2003-04-29 10:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-29  9:35 [Comm] TELNET & BASH Igo-aeroflot
2003-04-29  9:42 ` [Comm] " Anton V. Boyarshinov
2003-04-29  9:44 ` [Comm] " Епифанов Сергей
2003-04-29  9:45 ` Ilya Kuznecov
2003-04-29  9:47 ` Епифанов Сергей
2003-04-29  9:49 ` Igor Homyakov
2003-04-29 10:53 ` [Comm] " Andrey Brindeew

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git