mirror of
https://github.com/tomru/advcal.git
synced 2026-03-02 22:17:17 +01:00
6 lines
179 B
Bash
Executable File
6 lines
179 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Gets videoIds from a youtube playlistItems response provided on stdin.
|
|
|
|
jq -M '[.items[] | {id: .snippet.resourceId.videoId, title: .snippet.title }]' <&0
|