ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: "ifiht (Mikal R)" <noreply@ruby-lang.org>
To: ruby-core@neon.ruby-lang.org
Subject: [ruby-core:110821] [Ruby master Bug#19130] MRI failing when executing shell builtin commands with Errno::ENOENT
Date: Sat, 19 Nov 2022 22:45:35 +0000 (UTC)	[thread overview]
Message-ID: <redmine.journal-100178.20221119224533.52558@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-19130.20221114020014.52558@ruby-lang.org

Issue #19130 has been updated by ifiht (Mikal R).


Is there a ruby-specific list then of what gets implemented? Seems like `type` is both included in the POSIX spec (https://pubs.opengroup.org/onlinepubs/9699919799/utilities/type.html) and the Bourne Shell, but not Ruby:
```
└$ /bin/sh -c "type type"
type is a shell builtin
```

mjrzasa (Maciek Rząsa) wrote in #note-2:
> I've reproduced it on MRI 2.7.0, but not for all built-ins, just ones that are Bash-specific as per these lists:
> * https://www.gnu.org/software/bash/manual/html_node/Bourne-Shell-Builtins.html (these work)
> * https://www.gnu.org/software/bash/manual/html_node/Bash-Builtins.html (these fail)
> 
> ```
> [3] pry(main)> %x(type ls)
> Errno::ENOENT: No such file or directory - type
> from (pry):3:in ``'
> [4] pry(main)> %x(pwd)
> => "/home/mrzasa\n"
> [5] pry(main)> %x(return)
> => ""
> [6] pry(main)> %x(alias)
> Errno::ENOENT: No such file or directory - alias
> from (pry):6:in ``'
> 
> ```



----------------------------------------
Bug #19130: MRI failing when executing shell builtin commands with Errno::ENOENT
https://bugs.ruby-lang.org/issues/19130#change-100178

* Author: ifiht (Mikal R)
* Status: Open
* Priority: Normal
* ruby -v: 3.2.0
* Backport: 2.7: UNKNOWN, 3.0: UNKNOWN, 3.1: UNKNOWN
----------------------------------------
Sorry if this came up already, Google & Redmine came up blank but maybe I missed it. Bug was found on 3.0.0 but I tested on 3.2.0-preview1 and it's present on both.

Trying to execute any shell builtin commands from irb or script fails with `No such file or directory - <cmd> (Errno::ENOENT)`

```
└$ rvm list
 * ruby-3.0.0 [ x86_64 ]
=> ruby-3.2.0-preview1 [ x86_64 ]
```
MRI 3.0.0:
```
3.0.0 :001 > %x(type ls)
Traceback (most recent call last):
        5: from /home/ifiht/.rvm/rubies/ruby-3.0.0/bin/irb:23:in `<main>'
        4: from /home/ifiht/.rvm/rubies/ruby-3.0.0/bin/irb:23:in `load'
        3: from /home/ifiht/.rvm/rubies/ruby-3.0.0/lib/ruby/gems/3.0.0/gems/irb-1.3.0/exe/irb:11:in `<top (required)>'
        2: from (irb):1:in `<main>'
        1: from (irb):1:in ``'
Errno::ENOENT (No such file or directory - type)
3.0.0 :002 > %x(cd /home/ifiht)
Traceback (most recent call last):
        6: from /home/ifiht/.rvm/rubies/ruby-3.0.0/bin/irb:23:in `<main>'
        5: from /home/ifiht/.rvm/rubies/ruby-3.0.0/bin/irb:23:in `load'
        4: from /home/ifiht/.rvm/rubies/ruby-3.0.0/lib/ruby/gems/3.0.0/gems/irb-1.3.0/exe/irb:11:in `<top (required)>'
        3: from (irb):1:in `<main>'
        2: from (irb):2:in `rescue in <main>'
        1: from (irb):2:in ``'
Errno::ENOENT (No such file or directory - cd)
3.0.0 :003 > exit
```
MRI 3.2.0:
```
:001 > %x(type ls)
(irb):1:in ``': No such file or directory - type (Errno::ENOENT)
        from (irb):1:in `<main>'
        from /home/ifiht/.rvm/rubies/ruby-3.2.0-preview1/lib/ruby/gems/3.2.0+1/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
        from /home/ifiht/.rvm/rubies/ruby-3.2.0-preview1/bin/irb:25:in `load'
        from /home/ifiht/.rvm/rubies/ruby-3.2.0-preview1/bin/irb:25:in `<main>'
 :002 > `type ls`
(irb):2:in ``': No such file or directory - type (Errno::ENOENT)
        from (irb):2:in `<main>'
        from /home/ifiht/.rvm/rubies/ruby-3.2.0-preview1/lib/ruby/gems/3.2.0+1/gems/irb-1.4.1/exe/irb:11:in `<top (required)>'
        from /home/ifiht/.rvm/rubies/ruby-3.2.0-preview1/bin/irb:25:in `load'
        from /home/ifiht/.rvm/rubies/ruby-3.2.0-preview1/bin/irb:25:in `<main>'
```

Assuming this is a bug? Let me know if shell builtins are deliberately excluded for some reason, I'll try to work around it.



-- 
https://bugs.ruby-lang.org/

  parent reply	other threads:[~2022-11-19 22:45 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-14  2:00 [ruby-core:110737] [Ruby master Bug#19130] MRI failing when executing shell builtins with Errno::ENOENT ifiht (Mikal R)
2022-11-18  9:50 ` [ruby-core:110808] [Ruby master Bug#19130] MRI failing when executing shell builtin commands " mjrzasa
2022-11-18  9:50 ` [ruby-core:110809] " mjrzasa
2022-11-18  9:53 ` [ruby-core:110810] " mjrzasa
2022-11-19 22:45 ` ifiht (Mikal R) [this message]
2022-11-19 23:07 ` [ruby-core:110822] " jeremyevans0 (Jeremy Evans)
2022-11-21 15:24 ` [ruby-core:110839] " nobu (Nobuyoshi Nakada)
2022-11-21 15:31 ` [ruby-core:110840] " nobu (Nobuyoshi Nakada)
2022-11-24 23:34 ` [ruby-core:110884] " jeremyevans0 (Jeremy Evans)

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.ruby-lang.org/en/community/mailing-lists/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-100178.20221119224533.52558@ruby-lang.org \
    --to=ruby-core@ruby-lang.org \
    --cc=ruby-core@neon.ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).