Project

General

Profile

1
#!/bin/bash -e
2
# reformats index.htm for display
3
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/runscripts/util.run
4
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/local.sh
5

    
6
if self_not_included; then
7

    
8
export linked_file="${BASH_SOURCE[0]%.run}"
9

    
10
clean_up ()
11
{
12
	echo_func
13
	echo_run in_place "$linked_file" repl \
14
	"$root_dir"/lib/Firefox_bookmarks.reformat.csv
15
}
16

    
17
all ()
18
{
19
	echo_func
20
	clean_up
21
}
22

    
23
fi
(3-3/3)