From: nobu@... Date: 2018-05-17T00:21:30+00:00 Subject: [ruby-core:87092] [Ruby trunk Bug#14765] Arguments passed to Open3.popen3() are not interpreted as wildcards Issue #14765 has been updated by nobu (Nobuyoshi Nakada). Subject changed from Arguments passed to Open3.popen3() are not interpreted as regular expressions to Arguments passed to Open3.popen3() are not interpreted as wildcards Description updated What's `Open3.popen4`? The bundled library open3.rb does not provide such method. Maybe a third party's method? ---------------------------------------- Bug #14765: Arguments passed to Open3.popen3() are not interpreted as wildcards https://bugs.ruby-lang.org/issues/14765#change-72059 * Author: Rushyanth (Rushyanth reddy) * Status: Open * Priority: Normal * Assignee: * Target version: * ruby -v: 2.3.1 * Backport: 2.3: UNKNOWN, 2.4: UNKNOWN, 2.5: UNKNOWN ---------------------------------------- In console when we write ```ruby stdin, stdout, stderr, wait_thr = Open3.popen4("cat .*.yml") stdout.readlines ``` All the files with names starting with `.` and ending in `.yml` are shown But when we do ```ruby stdin, stdout, stderr, wait_thr = Open3.popen4("cat", ".*.yml") stdout.readlines ``` It returns an empty array `stderr.readlines` says `["cat: .*.yml: No such file or directory\n"]` Because it is interpreting the string arguments as it is and looking for a file with name `.*.yml` and not interpreting as in the first case. -- https://bugs.ruby-lang.org/ Unsubscribe: