notepad ++如何运行curl请求?

时间:2011-08-06 16:08:57

标签: curl notepad++ nppexec

我想知道是否有任何方法可以在记事本++中运行curl

我遇到了http://net.tutsplus.com/articles/news/cross-browser-css-in-seconds-with-prefixr/,其中显示了如何在终端中运行http://prefixr.com/

有什么想法吗? 感谢

2 个答案:

答案 0 :(得分:1)

在Notepad ++中使用NppExec插件创建一个脚本来调用CURL。我使用curl使用以下NppExec脚本提交SQL进行格式化。

// enable $(OUTPUT) variable
NPE_CONSOLE v+
// this temporary file name will be used 
set TEMP_FILE = $(SYS.TEMP)\npp_sel.txt 
// save current selection as ANSI text file 
SEL_SAVETO $(TEMP_FILE) :a 
// POST selection to sql format the selection
curl -s --data-urlencode data@"$(TEMP_FILE)"  -d keyword_case=upper -d reindent=true -d n_indents=2 -d format=text "http://sqlformat.appspot.com/format"
// open new editor pane
NPP_SENDMSG WM_COMMAND IDM_FILE_NEW
// replace the selected text: cmd's output
SEL_SETTEXT $(OUTPUT)
// finally, disable $(OUTPUT) variable
NPE_CONSOLE v-

答案 1 :(得分:0)

您可以下载NppExec插件,它将命令提示符嵌入到记事本++中,然后从命令行运行您需要的任何内容。

要获得它,请转到插件 - >插件管理器 - >显示插件管理器并找到“NppExec”