Tương đương Grep
Bạn có thể định nghĩa hàm bash, nói "xp" ("xpath") bao bọc một số mã python3. Để sử dụng nó, bạn cần cài đặt python3 và python-lxml. Những lợi ích:
- kết hợp regex mà bạn thiếu trong ví dụ xmllint.
- Sử dụng làm bộ lọc (trong đường ống) trên dòng lệnh
Thật dễ dàng và mạnh mẽ để sử dụng như thế này:
xmldoc=$(cat <<EOF
<?xml version="1.0" encoding="utf-8"?>
<job xmlns="http://www.sample.com/">programming</job>
EOF
)
selection='//*[namespace-uri()="http://www.sample.com/" and local-name()="job" and re:test(.,"^pro.*ing$")]/text()'
echo "$xmldoc" | xp "$selection"
# prints programming
xp () trông giống như thế này:
xp()
{
local selection="$1";
local xmldoc;
if ! [[ -t 0 ]]; then
read -rd '' xmldoc;
else
xmldoc="$2";
fi;
python3 <(printf '%b' "from lxml.html import tostring\nfrom lxml import etree\nfrom sys import stdin\nregexpNS = \"http://exslt.org/regular-expressions\"\ntree = etree.parse(stdin)\nfor e in tree.xpath('""$selection""', namespaces={'re':regexpNS}):\n if isinstance(e, str):\n print(e)\n else:\n print(tostring(e).decode('UTF-8'))") <<< "$xmldoc"
}
Sed tương đương
Cân nhắc sử dụng xq cung cấp cho bạn toàn bộ sức mạnh của "ngôn ngữ lập trình" jq. Nếu bạn đã cài đặt python-pip, bạn có thể cài đặt xq với cài đặt pip yq , trong ví dụ dưới đây, chúng tôi sẽ thay thế "Giữ tài khoản" bằng "Giữ tài khoản 2":
xmldoc=$(cat <<'EOF'
<resources>
<string name="app_name">Keep Accounts</string>
<string name="login">"login"</string>
<string name="login_password">"password:"</string>
<string name="login_account_hint">input to login</string>
<string name="login_password_hint">input your password</string>
<string name="login_fail">login failed</string>
</resources>
EOF
)
echo "$xmldoc" | xq '.resources.string = ([.resources.string[]|select(."#text" == "Keep Accounts") ."#text" = "Keep Accounts 2"])' -x