I created 5 files in Debian Version 9(Stretch) like below: touch a touch b touch c touch d touch e
When i did "ls -f" then output is "d a b c e . .."
Note: the output order in debian is in zigzag order, neither ascending nor descending.
Similar test i did in RHEL7, the outputs are like below: "ls -f" then output is ". .. a b c d e"
Can you suggest me how to make the output as ". .. a b c d e" in debian when "ls -f" is performed over debian.
Thanks in advance.