Description of problem: Bash autocomplete does not pick files from current directory on RHEL 8. Version-Release number of selected component (if applicable): Tested on RHEL 8.4 with bash-completion-2.7-5.el8.noarch installed version How reproducible: i. On RHEL 7, we can run the simple test: ~~~ # touch test.out # echo "This is test file" >> test.out # for i in $(cat test.out [Tab auto completes and provides the file] # for i in $(cat test.out);do echo $i;done ~~~ For RHEL 8 this is not reproducible: ~~~ # touch test.out # echo "This is test file" >> test.out # for i in $(cat test.out [Tab does not auto complete and does not include the file name on terminal] ~~~ Actual results: bash-completion should include the file name present in current directory. Expected results: bash-completion fails to pick up the file.
*** This bug has been marked as a duplicate of bug 1983092 ***