注:bat脚本使用ANSI编码
第一种cd /d %~dp0set onepath=%cd%echo —————–create file and cat—————————-for /l %%i in (1 1 10) do echo “this is test for test-%%i” >>testfile.txttype testfile.txttreeecho —————–create file link———————————-set sourcefile=%onepath%testfile.txtecho [InternetShortcut] >>testfile.url echo URL=”%sourcefile%” >>testfile.urlecho IconIndex=0 >> testfile.urlecho IconFile=”%onepath%testfile.txt%” >>testfile.urlecho %errorlevel%pause2.第二种
@ echo offcolor 0aset onepath=%cd%echo —————–create file and cat—————————-for /l %%i in (1 1 10) do echo “this is test for test-%%i” >>testfile.txttype testfile.txttreeecho —————–create file link———————————-
::设置程序或文件的完整路径(必选)set sourcefile=%onepath%testfile.txt::设置快捷方式名称(必选)set LnkName=testfile::设置程序的工作路径,一般为程序主目录,此项若留空,脚本将自行分析路径::set WorkDir=::设置快捷方式显示的说明(可选)set Desc=测试
(echo Set WshShell=CreateObject(“WScript.Shell”^)echo strDesKtop=WshShell.SpecialFolders(“%onepath%”^)echo Set oShellLink=WshShell.CreateShortcut(“%onepath%” ^&”%LnkName%.lnk”^)echo oShellLink.TargetPath=”%sourcefile%”echo oShellLink.WorkingDirectory=”%onepath%”echo oShellLink.WindowStyle=1echo oShellLink.Description=”%Desc%”echo oShellLink.Save)>makelnk.vbs
makelnk.vbsdel /f /q makelnk.vbs::exitif %errorlevel%==0 ( echo create file link success!)echo —————————————create dir link——————————-
tree %onepath%
pause3. 举例文件与文件夹均创建快捷方式@ echo offtitle bat to dir or file testcolor 0acd /d %~dp0set onepath=%cd%echo ———————–date:%date%—————————–echo %date% >> testfile.txtecho ———————–time:%time%—————————–echo %time% >> testfile.txtecho —————–create file and cat—————————-for /l %%i in (1 1 10) do echo “this is test for test-%%i” >>testfile.txttype testfile.txt
echo —————–create dir testdir———————————-md testdirtreeecho ——————move testfile to testdir————————–move testfile.txt %onepath%testdirecho ——————rename testdir testdir1——————开发云主机域名——move testdir testdir1echo ——————-cd testdir1———————————-cd %onepath%testdir1echo ——————rename testfile.txt testfile1.txt——————move testfile.txt testfile1.txtecho ——————-copy testfile1.txt testfile1.bak——————copy testfile1.txt testfile.bakecho ——————–move testdir1/testfile1.txt to %onepath%——–move testfile1.txt %onepath%echo ——————cd %onepath%—————————–cd %onepath%echo ——————list %onepath%—————————tree %onepath%echo ——————-create link————————————–::set var delaysetlocal EnableDelayedExpansion
for %%a in (testfile1.txt testdir1) do ( echo “star create link” (echo Set WshShell=CreateObject(“WScript.Shell”^) echo strDesKtop=WshShell.SpecialFolders(“%onepath%”^) echo Set oShellLink=WshShell.CreateShortcut(“%onepath%” ^&”%%a-test.lnk”^) echo oShellLink.TargetPath=”%onepath%%%a” echo oShellLink.WorkingDirectory=”%onepath%” echo oShellLink.WindowStyle=1 echo oShellLink.Save)>makelnk.vbs makelnk.vbs if %errorlevel%==0 ( echo “create %%a link success!” ) ::type makelnk.vbs del /f /q makelnk.vbs
)if %errorlevel%==0 ( echo “create all link success!”)
echo ————-list %onepath% structure———tree %onepath%echo ————-dir %onepath%———dir %onepath%pause
RSA属于非对称加密算法,它虽然解决了“在不安全的信道上安全地传递密钥”这一问题,但缺点在于运算量太大,造成加/解速度太慢,所以在具体的工程应用上是混合使用开发云主机域名了对称和和非对称加密算法,比如SSL/TLS协议是混合使用了RSA和AES算法。具体的过程…
免责声明:本站发布的图片视频文字,以转载和分享为主,文章观点不代表本站立场,本站不承担相关法律责任;如果涉及侵权请联系邮箱:360163164@qq.com举报,并提供相关证据,经查实将立刻删除涉嫌侵权内容。