BTW. any idea how can I have parenthesis in destination name/path with Copy command? Using ' characters before parenthesis do work in source, but not in destination. At least in standard shell, haven't tried with Vinced...
For example:
Ram Disk:test> echo "bla" > test(1)
Ram Disk:test> dir
  test(1)
Ram Disk:test> copy test'(1') testfile
Ram Disk:test> dir
  test(1)                          testfile
Ram Disk:test> copy testfile test(2)
Wildcard destination invalid.
Ram Disk:test> copy testfile test'(2')
Wildcard destination invalid.
Ram Disk:test> makedir testdir(1)
Ram Disk:test> dir
     testdir(1) (dir)
  test(1)                          testfile
Ram Disk:test> copy testfile testdir(1)/
Wildcard destination invalid.
Ram Disk:test> copy testfile testdir'(1')
Wildcard destination invalid.