mirror of
https://github.com/moparisthebest/wallabag_scripts
synced 2024-11-21 08:35:09 -05:00
3 lines
172 B
Plaintext
3 lines
172 B
Plaintext
|
#!/bin/sh
|
||
|
# this spits out URLs from a firefox bookmark json export, rather ugly...
|
||
|
python -m json.tool < "$1" | grep '^ *"uri": *"' | sed -e 's/^ *"uri": *"//' -e 's/"$//'
|