Actions
Bug #14765
closedArguments passed to Open3.popen3() are not interpreted as wildcards
Bug #14765:
Arguments passed to Open3.popen3() are not interpreted as wildcards
Description
In console when we write
All the files with names starting with . and ending in .yml are shown
But when we do
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.
Actions