File: comment_4_f040e31b763fc9a7aa092442b4d6b8e8._comment

package info (click to toggle)
git-annex 10.20230126-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 69,344 kB
  • sloc: haskell: 74,654; javascript: 9,103; sh: 1,304; makefile: 203; perl: 136; ansic: 44
file content (20 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[[!comment format=mdwn
 username="arand"
 ip="130.243.226.21"
 subject="comment 4"
 date="2013-09-01T18:06:51Z"
 content="""
Yet another solution, keeping it all in one script

    #!/bin/sh
    
    while IFS= read line
    do
            test -n \"${line%%#*}\" && echo git annex importfeed --relaxed \"$line\"
    done <<EOF
    # FooCast - Alice & Bob
    http://feeds.foo.com/foocast
    # FrobCast
    http://meep.moop.com/feed
    EOF
"""]]