Windows shell中的“Bootstrap”python脚本,没有.py / .pyw关联

前端之家收集整理的这篇文章主要介绍了Windows shell中的“Bootstrap”python脚本,没有.py / .pyw关联前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有时(在客户的PC中)我需要一个 python脚本在 Windows shell中执行,如.CMD或.BAT,但没有与PYTHON / PYTHONW关联的.py或.pyw扩展名.

我推出了一对’quick’n dirty’解决方案:

1)

  1. """
  2. e:\devtool\python\python.exe %0 :: or %PYTHONPATH%\python.exe
  3. goto eof:
  4. """
  5. # Python test
  6. print "[works,but shows shell errors]"

2)

  1. @echo off
  2. for /f "skip=4 delims=xxx" %%l in (%0) do @echo %%l | e:\devtools\python\python.exe
  3. goto :eof
  4. ::----------
  5.  
  6. # Python test
  7. print "[works better,but is somewhat messy]"

你知道更好的解决方案吗? (即:更简洁或优雅)

更新:

基于@van回答,我找到了更简洁的方法(没有设置ERRORLEVEL)

  1. @e:\devtools\python\python.exe -x "%~f0" %* & exit /b
  2.  
  3. ### Python begins....
  4. import sys
  5.  
  6. for arg in sys.argv:
  7. print arg
  8.  
  9. raw_input("It works!!!\n")
  10.  
  11. ###
你可以尝试创建一个python和windows shell脚本的脚本.在这种情况下,您可以将文件命名为my_flexible_script.bat并直接或通过python执行….

查看pylint中pylint.bat文件内容

  1. @echo off
  2. rem = """-*-Python-*- script
  3. rem -------------------- DOS section --------------------
  4. rem You could set PYTHONPATH or TK environment variables here
  5. python -x "%~f0" %*
  6. goto exit
  7.  
  8. """
  9. # -------------------- Python section --------------------
  10. import sys
  11. from pylint import lint
  12. lint.Run(sys.argv[1:])
  13.  
  14.  
  15. DosExitLabel = """
  16. :exit
  17. exit(ERRORLEVEL)
  18. rem """

它与您的操作类似,但具有更多兼容的双脚本支持.

猜你在找的Windows相关文章