File: comment_2_b493ee97eb2378e72c12f3d137109580._comment

package info (click to toggle)
git-annex 5.20141125%2Bdeb8u1
  • links: PTS
  • area: main
  • in suites: jessie
  • size: 37,832 kB
  • sloc: haskell: 42,603; sh: 1,080; ansic: 498; makefile: 316; perl: 125
file content (15 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[[!comment format=mdwn
 username="http://mylesenglish.myopenid.com/"
 ip="217.39.94.195"
 subject="comment 2"
 date="2013-09-16T19:21:31Z"
 content="""
This shell function behaves more like ls and shows the files that are present:

    ga-ls () {
      CWD=`pwd`
      cd ${1:-.} && git annex find | cut -d / -f 1 | uniq
      cd ${CWD}
    }

"""]]