- Jan
- 615
- 15
I have a directory of files.
I just created file on the bottom of the list while doing an incremental dump of our subversion server. I knew the starting revision, but didn't know what the latest revision would be so I just put in a filler number. After the dump was finished, I found out what the latest revision was and started to rename the file accordingly. However, upon typing the following command...
and pressing the tab key to autocomplete the only "*.dump" file in the directory, it completed with...
CMD and BASH both don't do this; they correctly expand to "svn_php_003151_123456.dump".
Is there some setting I'm missing?
I checked the help file and the only thing I found that could explain this was...
HTML:
G:\SVN_Backup> dir
Volume in drive G is LOCAL DISK Serial number is 17ea:3758
Directory of G:\SVN_Backup\*
2/12/2014 10:27 <DIR> .
2/12/2014 10:27 <DIR> ..
2/03/2014 17:07 442,142 svn_bash_000000_000001.dump.zip
2/13/2014 13:47 151,346,003 svn_cf_000000_000261.dump.zip
1/14/2013 16:37 82,591,740 svn_php_000000_000499.dump.zip
3/26/2013 08:22 8,637,115 svn_php_000500_000999.dump.zip
7/19/2013 08:39 47,201,270 svn_php_001000_001499.dump.zip
9/11/2013 13:59 25,663,297 svn_php_001500_001999.dump.zip
11/13/2013 15:30 48,399,294 svn_php_002000_002499.dump.zip
2/21/2014 14:25 9,596,660 svn_php_002500_002999.dump.zip
3/10/2014 09:21 9,003,372 svn_php_003000_003055.dump.zip
3/19/2014 11:32 223,435 svn_php_003056_003126.dump.zip
3/25/2014 11:27 4,832,044 svn_php_003127_003150.dump.zip
3/27/2014 15:02 42,187,995 svn_php_003151_123456.dump
430,124,367 bytes in 12 files and 2 dirs 430,309,376 bytes allocated
95,973,867,520 bytes free
HTML:
G:\SVN_Backup> ren *.dump
HTML:
G:\SVN_Backup> ren svn_bash_000000_000001.dump.zip
CMD and BASH both don't do this; they correctly expand to "svn_php_003151_123456.dump".
Is there some setting I'm missing?
I checked the help file and the only thing I found that could explain this was...
The first sentence doesn't apply since I provided an extension and the second sentence should not apply since it was not a partial extension.Take Command Help v.16.0 said:If you type a filename without an extension, TCC will append * to the name on LFN drives, and *.* on drives which only support short file names. It will also place a * after a partial extension.