Home >Backend Development >PHP Tutorial >Notepad running script shortcut key settings, notepad script_PHP tutorial

Notepad running script shortcut key settings, notepad script_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-12 08:51:191300browse

Notepad running script shortcut key setting, notepad script

php:
cmd /k /path/to/php.exe "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT


python:
cmd /k D: & cd "$(CURRENT_DIRECTORY)" & python "$(FULL_CURRENT_PATH)" & PAUSE & EXIT


javac & java:
cmd /k D: & cd "$(CURRENT_DIRECTORY)" & javac "$(FULL_CURRENT_PATH)" & java "$(NAME_PART)" & PAUSE & EXIT

Specify encoding:

cmd /k D: & cd "$(CURRENT_DIRECTORY)" & javac -encoding utf-8 "$(FULL_CURRENT_PATH)" & java "$(NAME_PART)" & PAUSE & EXIT

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1131873.htmlTechArticleNotepad running script shortcut key setting, notepad script php: cmd /k /path/to/php.exe "$ (FULL_CURRENT_PATH)" ECHO. PAUSE EXIT python: cmd /k D: cd "$(CURRENT_DIRECTORY)" python "$(FUL...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn