0
有沒有辦法讓輸出顯示正確的文字。當我嘗試過這種情況時,不等號不會顯示出來,除非您將"
置於其周圍,並且它也會顯示引號。有沒有辦法打印括號並仍然顯示>
或<
符號?如何打印不含引號的不等號?
我想使用類似如下的代碼...
set /p projectname=Enter Project Name:
cd %USERPROFILE%\Desktop\Output
echo <html> >>%projectname%.html
echo <head> >>%projectname%.html
echo <link rel="stylesheet" href="%projectname%.css">">>%projectname%.html
echo </head> >>%projectname%.html
我所要的輸出如下所示...
<html>
<head>
<link rel="stylesheet" href="(project name).css">
可能重複[批處理腳本中的轉義字符](http://stackoverflow.com/questions/3854779/escape-characters-in-batch-scripts) –