
All chars has been replaced by NUL. I didn't made a copy since 3 days.
Is my file really dead?
edit: I rewrite the file - I'm not lucky these days
Thank again to Dave.
Code: Select all
set "file=a ^ b.bat"
set "arg1=this ^ works"
set "arg2=perfectly ^^"
call "%%file%%" "%%arg1%%" "%%arg2%%"
Code: Select all
set "bat_file=a ^ b.bat"
call "%bat_file:^="^^"%"
:: or
set "bat_file2=%bat_file:^="^^^^"%"
call "%bat_file2%"
Hum... this is trying to call "a ^^^^ b.bat", as call command escapes caretsEd Dyreen wrote:Code: Select all
call "a ^^ b.bat"