ALT Linux Team development discussions
 help / color / mirror / Atom feed
* [devel] Re: I: console-tools-0.2.3-ipl14.1mdk
  @ 2002-11-05  9:14   ` Dmitry V. Levin
  2002-11-05 16:39     ` Ivan Zakharyaschev
  0 siblings, 1 reply; 3+ messages in thread
From: Dmitry V. Levin @ 2002-11-05  9:14 UTC (permalink / raw)
  To: Ivan Zakharyaschev; +Cc: ALT Devel discussion list

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

Greetings!

On Tue, Nov 05, 2002 at 12:16:31AM +0300, Ivan Zakharyaschev wrote:
[...]
> Вообще это требует обсуждения или обдумывания: нужно ли именно такое
> выставление erase char (то, что есть сейчас в скрипте -- просто более
> лаконичная эквивалентная запись того, что есть в Mdk): почему надо в
> зависимости от системного параметра BACKSPACE из /etc/sysconfig/keyboard
> ставить этот erase char для, скажем, shell-а пользователя, работающего
> не за этим компьютером (ssh с другого компьютера)? Почему надо
> беспокоиться об xterm-ах?

Не факт, что надо.
Это, очевидно, из непроверенного наследия MDK, в котором надо разобраться.
Перевожу дискуссию в devel@.

> А чем твоя проверка на интерактивность лучше PS1 (PS1 я нашёл в info
> bash и успокоился, уверенный в том, что это корректно).

Такая же проверка есть в /etc/bashrc.


--
ldv

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

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

* Re: [devel] Re: I: console-tools-0.2.3-ipl14.1mdk
  2002-11-05  9:14   ` [devel] Re: I: console-tools-0.2.3-ipl14.1mdk Dmitry V. Levin
@ 2002-11-05 16:39     ` Ivan Zakharyaschev
  2002-11-05 17:38       ` Dmitry V. Levin
  0 siblings, 1 reply; 3+ messages in thread
From: Ivan Zakharyaschev @ 2002-11-05 16:39 UTC (permalink / raw)
  To: ALT Devel discussion list

	Hello!

On Tue, 5 Nov 2002, Dmitry V. Levin wrote:

> > А чем твоя проверка на интерактивность лучше PS1 (PS1 я нашёл в
> info
> > bash и успокоился, уверенный в том, что это корректно).
>
> Такая же проверка есть в /etc/bashrc.

Я ещё раз заглянул на ту же страницу -- там написаны оба варианта, так
что, наверное, больщой разницы нет. $- немного понятнее.

В скрипте Mandrake есть ещё такая проверка:

# bash sets the $- variable, and puts 'c' in it if it is a
non-interactive
# shell
# For other shells, I assume $- is not available
if [ "$SHELL" = "/bin/bash" ]; then
		if echo $- | grep 'c' >/dev/null; then
				return  #non-interactive
		fi
fi

Есть ли какие-нибудь соображения, нужна ли она в дополнение к уже
имеющейся? i и c друг друга не исключают:

$ sh -ic 'echo $-'
himBc


А вот отрывок из bash.info, про который я говорил:

Is this Shell Interactive?
--------------------------

   To determine within a startup script whether or not Bash is running
interactively, test the value of the `-' special parameter.  It
contains `i' when the shell is interactive.  For example:

     case "$-" in
     *i*)	echo This shell is interactive ;;
     *)	echo This shell is not interactive ;;
     esac

   Alternatively, startup scripts may examine the variable `PS1'; it is
unset in non-interactive shells, and set in interactive shells.  Thus:

     if [ -z "$PS1" ]; then
             echo This shell is not interactive
     else
             echo This shell is interactive
     fi




-- 
С наилучшими пожеланиями,
Иван Захарьящев, Москва



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

* Re: [devel] Re: I: console-tools-0.2.3-ipl14.1mdk
  2002-11-05 16:39     ` Ivan Zakharyaschev
@ 2002-11-05 17:38       ` Dmitry V. Levin
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry V. Levin @ 2002-11-05 17:38 UTC (permalink / raw)
  To: ALT Devel discussion list

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

On Tue, Nov 05, 2002 at 07:39:36PM +0300, Ivan Zakharyaschev wrote:
> > > А чем твоя проверка на интерактивность лучше PS1 (PS1 я нашёл в
> > info
> > > bash и успокоился, уверенный в том, что это корректно).
> >
> > Такая же проверка есть в /etc/bashrc.
> 
> Я ещё раз заглянул на ту же страницу -- там написаны оба варианта, так
> что, наверное, больщой разницы нет. $- немного понятнее.

И более portable.

> В скрипте Mandrake есть ещё такая проверка:

Это перебор.
По крайней мере, $- работает в bash/sh, ash, ksh и zsh.

Резюме: должно хватить того, что есть в console-tools-0.2.3-ipl14.2mdk

Если, конечно, это все вообще нужно.


--
ldv

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

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

end of thread, other threads:[~2002-11-05 17:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-05  9:14   ` [devel] Re: I: console-tools-0.2.3-ipl14.1mdk Dmitry V. Levin
2002-11-05 16:39     ` Ivan Zakharyaschev
2002-11-05 17:38       ` Dmitry V. Levin

ALT Linux Team development discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/devel/0 devel/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 devel devel/ http://lore.altlinux.org/devel \
		devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
	public-inbox-index devel

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


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