如何将.txt文件中包含的文本用作cmd脚本中的字符串变量?

时间:2017-02-21 01:17:54

标签: windows cmd

我制作了一个定制的凯撒密码解密器,它的工作原理如下:

SET "tekst=text to de encrypt"

SET tekst=%tekst:e=f%
SET tekst=%tekst:k=e%
SET tekst=%tekst:b=k%
SET tekst=%tekst:v=b%
SET tekst=%tekst:j=v%
SET tekst=%tekst:h=j%
SET tekst=%tekst:y=h%
SET tekst=%tekst:i=d%
SET tekst=%tekst:c=i%
SET tekst=%tekst:s=c%
SET tekst=%tekst:g=s%
SET tekst=%tekst:a=g%
SET tekst=%tekst:z=a%
SET tekst=%tekst:r=z%
SET tekst=%tekst:q=r%
SET tekst=%tekst:x=m%
SET tekst=%tekst:w=u%
SET tekst=%tekst:p=w%
SET tekst=%tekst:n=p%
SET tekst=%tekst:u=n%
SET tekst=%tekst:o=t%

echo %tekst% >> output.txt

我的问题是我想使用.txt文件来读取而不必将文本复制到定义文本变量的位置,因为我有很多需要解密的文本文件。有没有办法在cmd中执行此操作?

0 个答案:

没有答案