Hello i have some xml output
<?xml version="1.0" encoding="utf-8"?>
<Active-plan currentid="1276215628">
    <Planers>
        <Plan1>
            <package>Intro_Europe_1GB_7d</package>
            <current-package>
                <package currentid="63753939" addid="13000">
                    <group-by-pack>data</group-by-pack>
                    <quantity>1071741824.00</quantity>
                    <remaining>993553024.00</remaining>
                    <timestamp-start>2022-03-01 10:35:05Z</timestamp-start>
                    <timestamp-end>2022-03-08 10:35:05Z</timestamp-end>
                </package>
            </current-package>
        </Plan1>
    </Planers>
</Active-plan>
What i want to have is to have output maybe with SED or AWK
Active plan currentid:1276215628
Package: Intro_Europe_1GB_7d
Package current id:63753939 addit:13000
Group pack : data
Quantity : 1071741824.00
Remaining data : 993553024.00
Start Time : 2022-03-01 10:35:05Z
End time : 022-03-08 10:35:05Z
I think this i need to export with sed and call by echo so i can display in that order that i post (every tag, new line)
 
    