GNU bug report logs - #29939
HELP:enter a "ls"command,then the os connection will closed

Previous Next

Package: coreutils;

Reported by: "lil373 <at> chinaunicom.cn" <lil373 <at> chinaunicom.cn>

Date: Tue, 2 Jan 2018 07:13:02 UTC

Severity: normal

Tags: moreinfo

Done: Assaf Gordon <assafgordon <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


Message #8 received at 29939 <at> debbugs.gnu.org (full text, mbox):

From: Bernhard Voelker <mail <at> bernhard-voelker.de>
To: "lil373 <at> chinaunicom.cn" <lil373 <at> chinaunicom.cn>, 29939 <at> debbugs.gnu.org
Subject: Re: bug#29939: HELP:enter a "ls"command, then the os connection will
 closed
Date: Wed, 3 Jan 2018 14:11:57 +0100
On 01/02/2018 07:25 AM, lil373 <at> chinaunicom.cn wrote:
>     When I enter a "ls " command at the directory "/root",the OS connection will closed.

are you sure "ls" is /usr/bin/ls?

  $ type ls
  ls is /usr/bin/ls

I.e., it could be aliased to something weird, e.g. a shell function which
calls '/usr/bin/ls' under the hood but "exit"s in certain cases:

  $ _ls() { /usr/bin/ls ${1+"$@"} | grep . || exit; }

  $ alias ls=_ls

  $ type ls
  ls is aliased to `_ls'

  $ ls
  bin
  file
  home
  ...

  $ ls ENOENT
  /usr/bin/ls: cannot access 'ENOENT': No such file or directory
  logout

Other than that, I don't see how the spawned 'ls' process could lead
to a logout of the calling shell process.

Have a nice day,
Berny




This bug report was last modified 6 years and 201 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.