当前位置:首页 » 操作系统 » lua安装linux

lua安装linux

发布时间: 2024-05-13 21:45:25

linux平台:使用lua语言遍历某一文件夹下所有文件

你可以参考如下实例代码:

functiongetFile(file_name)
localf=assert(io.open(file_name,'r'))
localstring=f:read("*all")
f:close()
returnstring
endfunctionwriteFile(file_name,string)
localf=assert(io.open(file_name,'w'))
f:write(string)
f:close()
end--从命令行获取参数,如果有参数则遍历指定目录,没有参数遍历当前目录ifarg[1]~=nilthen
cmd="ls"..arg[1]
else
cmd="ls"endprint("cmd",cmd)
--io.popen返回的是一个FILE,跟c里面的popen一样locals=io.popen(cmd)
localfileLists=s:read("*all")
print(fileLists)
whiletruedo--从文件列表里一行一行的获取文件名_,end_pos,line=string.find(fileLists,"([^ ]+.txt)",start_pos)
ifnotend_posthenbreakend--print("wld",line)localstr=getFile(line)
--把每一行的末尾1,替换为0,localnew=string.gsub(str,"1, ","0, ");
--替换后的字符串写入到文件。以前的内容会清空writeFile(line,new)
start_pos=end_pos+1end

㈡ Lua 的utf8库及使用方法

a utf-8 support mole for Lua and LuaJIT
源码地址: https://github.com/starwing/luautf8

编译后可用的库: https://github.com/cherishpf/luautf8
https://download.csdn.net/download/cherishpf/11579451
Linux版:lua-utf8.so
Windows版:lua-utf8.dll(若是用在openresty中,openresty版本需使用32位版本,使用64位版本时会报错“lua-utf8.dll 不是有效的 Win32 应用程序”)
将lua-utf8库放在openresty安装目录下,使用时用require引入。

㈢ linux怎么卸载lua5.2

linux 中卸载软件有多种方式:

  1. 如果是图形界面, 可以使用应用商店卸载

  2. 命令行可以使用 apt-get remove 卸载, 在用apt-get autoremove 清除残留

  3. 找到软件安装目录下的卸载脚本卸载,然后将残留文件删除即可

  4. 其他方式可以参考readme文档

热点内容
sql2005加密 发布:2024-11-27 08:32:11 浏览:740
安卓手机如何锁屏录像 发布:2024-11-27 08:31:14 浏览:98
wms源码 发布:2024-11-27 08:30:25 浏览:3
华为编译器系列 发布:2024-11-27 08:29:42 浏览:854
长江存储上海 发布:2024-11-27 08:29:31 浏览:328
crm客户管理系统源码 发布:2024-11-27 07:59:26 浏览:363
匠辰app安卓在哪里下载 发布:2024-11-27 07:47:12 浏览:731
sql表操作 发布:2024-11-27 07:46:31 浏览:813
云顶之脚本 发布:2024-11-27 07:45:37 浏览:658
编程箴言pdf 发布:2024-11-27 07:43:59 浏览:369