最近尝试着写各种程序,都不深入,但各种不同的环境和工具在我的管理下分布在很多不同的目录,直接导致开发之前,花很多时间去准备,很浪费时间。

后来想到批处理,嗯,批处理。

于是,当我要开始写php的时候,我就打开phpstart.bat了。

 

@echo OFF
echo Open Notepad++ ...
start "" "D:\dir1\Notepad++\unicode\notepad++.exe"
echo Notepad++ opened ...
echo Start mysql ...
net start mysql
echo Start apache ...
net start apache2.2
echo Start eclipse-php ...
start "" "D:\dir2\eclipse-php-3.0.2.v2011102768-Win32\eclipse-php\eclipse-php.exe"
echo eclipse-php opened ...
@echo   
echo Batch Starting End
pause 

相关文章:

  • 2021-09-12
  • 2021-06-05
  • 2021-06-11
  • 2022-12-23
  • 2021-12-12
  • 2022-12-23
猜你喜欢
  • 2022-02-02
  • 2022-02-02
  • 2021-12-11
  • 2022-01-30
  • 2022-12-23
  • 2021-10-10
相关资源
相似解决方案