在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):openresty/lua-resty-shell开源软件地址(OpenSource Url):https://github.com/openresty/lua-resty-shell开源编程语言(OpenSource Language):Perl 49.8%开源软件介绍(OpenSource Introduction):Namelua-resty-shell - Lua module for nonblocking system shell command executions Table of ContentsSynopsislocal shell = require "resty.shell"
local stdin = "hello"
local timeout = 1000 -- ms
local max_size = 4096 -- byte
local ok, stdout, stderr, reason, status =
shell.run([[perl -e 'warn "he\n"; print <>']], stdin, timeout, max_size)
if not ok then
-- ...
end Functionsrunsyntax: context: Runs a shell command, The When the The The Upon terminating successfully (with a zero exit status), Upon terminating abnormally (non-zero exit status), Upon exceeding a timeout threshold or any other unexpected error, When a timeout threshold is exceeded, the sub-process will be terminated as such:
Note that child processes of the sub-process (if any) will not be terminated. You may need to terminate these processes yourself. When the sub-process is terminated by a UNIX signal, the DependenciesThis library depends on
AuthorYichun Zhang (agentzh) [email protected] Copyright & LicensesThis module is licensed under the BSD license. Copyright (C) 2018-2019, OpenResty Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论