Skip to main content

Print the list of Safari tabs to stdout

ID
748362f
date
2024-04-13 03:32:54+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
70ae50a
message
Print the list of Safari tabs to stdout
changed files
1 file, 3 additions, 3 deletions

Changed files

macos/list_safari_tabs (717) → macos/list_safari_tabs (789)

diff --git a/macos/list_safari_tabs b/macos/list_safari_tabs
index ea9bf42..b19967a 100755
--- a/macos/list_safari_tabs
+++ b/macos/list_safari_tabs
@@ -22,6 +22,6 @@ function* tabGenerator() {
   }
 }
 
-for (const url of tabGenerator()) {
-  console.log(url);
-}
+// Print the list of tabs to stdout.
+// See https://apple.stackexchange.com/a/278395/14295
+Array.from(tabGenerator()).join('\n');