История изменений
Исправление superuser, (текущая версия) :
Хочу отсортировать закладки в расширении для chrome. Структура там сложнее и не я пейсал её. Так надо в общем.
https://chrome.google.com/webstore/detail/speed-dial-2-new-tab/jpfpebmajhhope...
Сортировка групп по алфавиту:
$ sqlite3 ${HOME}/.config/chromium/Default/databases/chrome-extension_jpfpebmajhhopeonhlcgidhclcccjcik_0/1 "update groups set position=(select xxx from (select 1 + row_number() over (order by title) as xxx, id as idxxx from groups) where idxxx=id);"
Это в честь Релиз SQLite 3.36.0
Исходная версия superuser, :
Хочу отсортировать закладки в расширении для chrome. Структура там сложнее и не я пейсал её. Так надо в общем.
https://chrome.google.com/webstore/detail/speed-dial-2-new-tab/jpfpebmajhhope...
Сортировка групп по алфавиту:
$ sqlite3 ${HOME}/.config/chromium/Default/databases/chrome-extension_jpfpebmajhhopeonhlcgidhclcccjcik_0/1 "update groups set position=(select xxx from (select 1 + row_number() over (order by title) as xxx, id as idxxx from groups) where idxxx=id);"