Skip to content

Instantly share code, notes, and snippets.

@andypiper
Created October 27, 2023 21:34
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andypiper/02886277c9ec3bcd4b29614a08586a46 to your computer and use it in GitHub Desktop.
Save andypiper/02886277c9ec3bcd4b29614a08586a46 to your computer and use it in GitHub Desktop.
Recover suspended tabs
chrome-cli list links | rg suspended\.html > tabs.txt
while read -r line; do tabid=`echo $line | cut -c 2-11`; url=`echo $line | awk -F "uri[=]" '{print $NF}'`; chrome-cli open $url -t $tabid; done < tabs.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment