All
Here i post my doubt about files with asterisk, First i create one file
touch test*
If i check ls -lrt it shows the test* file in the current.
Then i removed that file using rm *.
Then i create two files which are test1* test2* using same touch command.
If i check ls -lrt.
It displays the two files that are test1* and test2*.
Again i create test* using touch command , now i check ls -lrt.
This time it will not display the file test*.
Why the test* file is not listed ?
Thanks & regards