blob: 8539b187c8d67dfe268015fca4d471f54d794c6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
if test -n "$1";
then
id=$1
elif test ! -t 0;
then
id=$(cat < /dev/stdin)
else
echo "ytrss: No Input"
exit
fi
echo "https://www.youtube.com/feeds/videos.xml?channel_id="$id
|