summaryrefslogtreecommitdiffstats
path: root/development/perl-shtags/README
diff options
context:
space:
mode:
author David Woodfall2018-04-05 22:55:09 +0200
committer Willy Sudiarto Raharjo2018-04-07 03:13:11 +0200
commit1e197d0257a929790531ae5093ac40e4f882a4db (patch)
tree05299fbb43ec6a2eb9b58a697138511523ecd444 /development/perl-shtags/README
parent19b2a5f74d10e399f05f5135acf0523efccbe7e3 (diff)
downloadslackbuilds-1e197d0257a929790531ae5093ac40e4f882a4db.tar.gz
development/perl-shtags: Added (sh tag creator).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'development/perl-shtags/README')
-rw-r--r--development/perl-shtags/README24
1 files changed, 24 insertions, 0 deletions
diff --git a/development/perl-shtags/README b/development/perl-shtags/README
new file mode 100644
index 0000000000..03f2173d64
--- /dev/null
+++ b/development/perl-shtags/README
@@ -0,0 +1,24 @@
+shtags.pl is a script to generate tag files for shell and perl scripts.
+
+USAGE: shtags.pl [-kvwVx] [-t <file>] <files>
+ -t <file> Name of tags file to create. (default is 'tags')
+ -s <shell> Name of the shell language in the script
+ -v Include variable definitions.
+ (variables mentioned at the start of a line)
+ -V Print version information.
+ -w Suppress "duplicate tag" warnings.
+ -x Explicitly create a new tags file. Normally tags are merged.
+ <files> List of files to scan for tags.
+
+This is an update to the one that comes with vim, modified to use Getopt::Std
+rather than the older getopts.pl that came with perl4.
+
+Supported script types:
+
+sh Bourne Shell (including bash, but use -s sh)
+perl Perl (versions 4 and 5)
+ksh Korn Shell
+tclsh The TCL shell
+wish The TK Windowing shell (same as tclsh)
+
+See man (1) shtags for more information.