Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 351 Bytes

USEFUL_CLI_COMMANDS.md

File metadata and controls

13 lines (9 loc) · 351 Bytes

List all parliaments appearing in MP records

Appearing as "current"

xmllint --xpath "string(//schema/ParliamentaryActivity/ParliamentaryStructure/ParliamentaryStructureName/@value)" * 2> /dev/null | sort | uniq

Fix xls to xlsx file extentions

for f in (file *.xls | grep "2007+" | cut -d":" -f1); mv $f $f"x"; end