Coder Social home page Coder Social logo

Query: file string search? about grub HOT 8 CLOSED

a1ive avatar a1ive commented on August 22, 2024
Query: file string search?

from grub.

Comments (8)

a1ive avatar a1ive commented on August 22, 2024

You could write lua scripts to do this.
Lua is much more powerful than grub2 bash-like scripts.

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

It doesn't seem to have the io module for io.open, etc.
I think there is some file support...

-- globals.lua
-- show all global variables

local seen={}

function dump(t,i)
	seen[t]=true
	local s={}
	local n=0
	for k in pairs(t) do
		n=n+1 s[n]=k
	end
	table.sort(s)
	for k,v in ipairs(s) do
		print(i,v)
		v=t[v]
		if type(v)=="table" and not seen[v] then
			dump(v,i.."\t")
		end
	end
end

dump(_G,"")

image
e.g. but I have no idea how to use it.
I want to open the file
read in a line
use gsub to replace a string
write the line to another file (can be an existing file)
on an NTFS or FAT32 volume.

?? any hints please when you have time ??

from grub.

a1ive avatar a1ive commented on August 22, 2024

please upload you xml file, I will write an example tomorrow.

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

infull.zip
That is very kind of you, thank you. I have never used lua and there seems to be no mention of 'file_getline' on Google for lua???

So I want to replace (in this example) all occurences of 'UNAME' with 'steve' and 'PCNAME' with 'ComputerA'

So a function like repl "searchstr" "replacestr" infile outfile
would be ideal
Note that the file has < and > and ! characters!

from grub.

a1ive avatar a1ive commented on August 22, 2024

abc.zip
Extract it to (hd0,1)/
and run lua (hd0,1)/write.lua

from grub.

a1ive avatar a1ive commented on August 22, 2024

abcd.zip
Extract it to (hd0,1)/
and run lua (hd0,1)/write.lua
深度截图_选择区域_20200301101832

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

Thank you so much!
That had the examples I needed and I now have it working. :-) 💯

from grub.

a1ive avatar a1ive commented on August 22, 2024

That had the examples I needed and I now have it working. :-) 100

I forgot to run grub.file_close.Please add it.

file1 = grub.file_open ("(tar)/test.xml")
file2 = grub.file_open ("(tar)/empty.xml", "w")
uname = read_input ("UNAME")
pcname = read_input ("PCNAME")
search_replace (file1, file2, {"UNAME", "PCNAME"}, {uname, pcname})
grub.file_close (file1)
grub.file_close (file2)

from grub.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.