Changes between Initial Version and Version 1 of Ticket #18117, comment 2
- Timestamp:
- Nov 9, 2018 4:49:00 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18117, comment 2
initial v1 4 4 For example, when run "cat .new.test1." on Linux, VirtualBox should remove the dot and access ".new.test1" file. 5 5 6 Here is testing procedure: 7 {{{ 8 chwon@chwon-VirtualBox:~/sandbox/tmp$ echo "hello" > .new.test. 9 chwon@chwon-VirtualBox:~/sandbox/tmp$ ls -la 10 total 5 11 drwxrwxrwx 1 chwon chwon 0 Nov 9 11:36 . 12 drwxrwxrwx 1 chwon chwon 4096 Nov 9 11:36 .. 13 -rwxrwxrwx 1 chwon chwon 6 Nov 9 11:36 .new.test 14 chwon@chwon-VirtualBox:~/sandbox/tmp$ cat .new.test. 15 cat: .new.test.: No such file or directory 16 chwon@chwon-VirtualBox:~/sandbox/tmp$ cat .new.test 17 hello 18 }}} 19 6 20 Do you know why it changed and which version changed it?