OSDN Git Service

(split) LDP: Update original to LDP v3.64
[linuxjm/LDP_man-pages.git] / tools / gen-add_ja-list.sh
1 #!/bin/bash
2
3 if [ ! -d add_ja/copyright ]; then
4     echo "add_ja/copyright directory not found."
5     exit 1
6 fi
7
8 cd add_ja/copyright
9 for f in `find man? -type f`; do
10     list=../lists/$f.list
11     if [ ! -f $list ]; then
12         echo po4a/add_ja/copyright/$f > $list
13         echo "Created add_ja/lists/$f.list"
14     fi
15 done