From Fedora Project Wiki
(Created page with "{{QA/Test_Case |description=Connecting with FUTURE profile to common websites |actions= It would be great if you could try connecting to sites that you normally connect to, bu...") |
No edit summary |
||
Line 7: | Line 7: | ||
#:<pre> | #:<pre> | ||
#::for f in $(find ~/.mozilla/firefox/ -name places.sqlite); do | #::for f in $(find ~/.mozilla/firefox/ -name places.sqlite); do | ||
#:: sqlite3 $f 'select distinct substr(replace(url, "https://", ""), 0, instr(replace(url, "https://", ""), "/")) from moz_places where url like | #:: sqlite3 $f 'select distinct substr(replace(url, "https://", ""), 0, instr(replace(url, "https://", ""), "/")) from moz_places where url like "https://%";' >>sites.txt | ||
#::done | #::done | ||
#::cat sites.txt |sort |uniq >sites.new; mv -f sites.new sites.txt | #::cat sites.txt |sort |uniq >sites.new; mv -f sites.new sites.txt |
Revision as of 12:16, 29 March 2017
Description
Connecting with FUTURE profile to common websites
How to test
It would be great if you could try connecting to sites that you normally connect to, but I understand if you have privacy concerns.
- TODO provide default file
- Export https sites from Firefox
- for f in $(find ~/.mozilla/firefox/ -name places.sqlite); do
- sqlite3 $f 'select distinct substr(replace(url, "https://", ""), 0, instr(replace(url, "https://", ""), "/")) from moz_places where url like "https://%";' >>sites.txt
- done
- cat sites.txt |sort |uniq >sites.new; mv -f sites.new sites.txt
- ...
- TODO export from Chrome
Expected Results
- TODO