aboutsummaryrefslogtreecommitdiff
path: root/show
blob: 86ece43446827661790056094aa10280cc7f130a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
#
# Fast way to browse documents stored in an archive.
#

# Parameters
BASENAME="`basename $0`"
DOCS="$HOME/data/doc"
LIST="$DOCS/.filelist"
ITEM="$1"
DATE="`date +%s`"
MAX_AGE="86400"

# Update the filelist
function __update_filelist {
  echo "Generating new filelist..."
  cd $DOCS && find . -not -path '*.git*' > $LIST
}

# Check
if [ -z "$ITEM" ]; then
  echo "usage: $BASENAME <item-name>"
  exit 1
elif [ ! -d "$DOCS" ]; then
  echo "missing $DOCS folder"
  exit 1
fi

# Check for filelist
if [ ! -e "$LIST" ]; then
  __update_filelist
  CHANGED="`date +%s`"
else
  CHANGED="`stat --printf='%Y\n' $LIST`"
fi

# Refresh lists older than $MAX_AGE
if ((($DATE - $CHANGED) >= $MAX_AGE)); then
  __update_filelist
fi

# Dispatch
#find $DOCS -iname "*$ITEM*" | head -1 | while read entry; do xdg-open "$entry"; done
grep -- "$ITEM" $LIST | while read entry; do
  echo "Opening $entry..."
  cd $DOCS && xdg-open "$entry"
done