can some body expaly me this command
sed -e 's/<[^>]*>//g' test > test.t
thank you
can some body expaly me this command
sed -e 's/<[^>]*>//g' test > test.t
thank you
It removes html/xml style tags from the input file.
s/ # Search for ...
< # Something that begins with '<'
[^>] # and continue while there isn't a '>'
* # for zero-or more characters
> # Ending with a '>' character
// # replace previous match with the empty string
g # do this globally for each line
This matches (and removes) things like <tag parameter=value>
ro <html>
.
thank you
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.