annotate create_index_ini.sh @ 92:c5895d87c65e

lets get these ordered
author Jeff Hammel <k0scist@gmail.com>
date Sat, 27 Dec 2014 10:49:58 -0800
parents 55719bcdc2c2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
90
55719bcdc2c2 add stub shell script for index.ini creatoin
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
1 #!/bin/bash
55719bcdc2c2 add stub shell script for index.ini creatoin
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
2
55719bcdc2c2 add stub shell script for index.ini creatoin
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
3 # create index.ini file from directory listings
55719bcdc2c2 add stub shell script for index.ini creatoin
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
4 # TODO: -> python
55719bcdc2c2 add stub shell script for index.ini creatoin
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
5
55719bcdc2c2 add stub shell script for index.ini creatoin
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
6 ls -1 | while read line; do echo "${line} = ${line}"; done > index.ini