Skip to content

Instantly share code, notes, and snippets.

@ThinGuy
Created January 31, 2022 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThinGuy/dd535ef87261972fdc9534eb6ca5b0fc to your computer and use it in GitHub Desktop.
Save ThinGuy/dd535ef87261972fdc9534eb6ca5b0fc to your computer and use it in GitHub Desktop.
Create csv (or "p"sv in this case) from an htmltabl using htmltab
sudo apt install pipx -yq
pipx install git+https://github.com/flother/htmltab
# Too many commas in table to make a CSV. Cleanup output and use pipes as the delimiter
(htmltab https://linux.dell.com/repo/community/openmanage|sed 's/,"|/|"/g;s/),"/)|/g;s/","/|/g;1s/,/|/g;s/,,/|/g;s/LTS,/LTS|/g;s/),v/)|v/g;s/),N/)|N/g;s/,\r$/|/g;s/(/ (/g')|tee ~/dell.psv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment