Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit108baf7

Browse files
committed
Developer reorganization.
1 parent125079e commit108baf7

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

‎src/tools/make_ctags

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
trap"rm -f /tmp/$$" 0 1 2 3 15
3+
rm -f ./tags
4+
find`pwd`/ -type f -name'*.[chyl]' -print|xargs ctags -t -a -f tags
5+
sort tags>/tmp/$$&& mv /tmp/$$ tags
6+
7+
find. -type d -print|whileread DIR
8+
do
9+
["$DIR"!="." ]&& ln -f -s`pwd`/tags$DIR/tags
10+
done

‎src/tools/make_etags

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/sh
2+
trap"rm -f /tmp/$$" 0 1 2 3 15
3+
rm -f ./TAGS
4+
find`pwd`/ -type f -name'*.[chyl]' -print| \
5+
xargs etags --append --output=TAGS
6+
7+
find. -type d -print| \
8+
whileread DIR;do
9+
["$DIR"!="." ]&& ln -f -s`pwd`/TAGS$DIR
10+
done

‎src/tools/make_mkid

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
find`pwd`/ -type f -name'*.[chyl]' -print|sed's;//;/;g'| mkid -S.gen=C -
3+
4+
find. -type d -print|whileread DIR
5+
do
6+
["$DIR"!="." ]&& ln -f -s`pwd`/ID$DIR/ID
7+
done

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp