记事本++如何运行curl请求?

发布于 2024-11-28 06:25:30 字数 308 浏览 0 评论 0 原文

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

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

有什么想法吗? 谢谢

I was wondering if there is any way i could run curl in notepad++

I came across http://net.tutsplus.com/articles/news/cross-browser-css-in-seconds-with-prefixr/ where it shows how to run http://prefixr.com/ in a terminal

Any ideas?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

满意归宿 2024-12-05 06:25:30

使用 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-

Use NppExec plugin within Notepad++ to create a script to invoke CURL. I use curl to submit SQL for formatting using following NppExec script.

// 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-
忆伤 2024-12-05 06:25:30

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

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

You can download the NppExec plugin which embeds a Command Prompt into notepad++ then run anything you need from the command line.

To get it, go to Plugins -> Plugin Manager -> Show Plugin Manager and find "NppExec"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文