summaryrefslogtreecommitdiff
path: root/fml/bin
diff options
context:
space:
mode:
authorfukachan <fukachan>2002-04-25 04:46:08 +0000
committerfukachan <fukachan>2002-04-25 04:46:08 +0000
commitf3547e27fee7bfe2369152ec4c3321bdf31c39cd (patch)
treed2d8c52141806f0dbfe3d95b31b53345fdbf68bb /fml/bin
parent1b804136c4004bea7bb07cdf8b86ef2f7e51364c (diff)
downloadfml8-f3547e27fee7bfe2369152ec4c3321bdf31c39cd.tar.gz
fml8-f3547e27fee7bfe2369152ec4c3321bdf31c39cd.tar.bz2
fml8-f3547e27fee7bfe2369152ec4c3321bdf31c39cd.zip
new utility: fmlalias e.g. shows not only fml but all alias entries
Diffstat (limited to 'fml/bin')
-rw-r--r--fml/bin/fmlalias17
-rw-r--r--fml/bin/fmlalias.in17
2 files changed, 34 insertions, 0 deletions
diff --git a/fml/bin/fmlalias b/fml/bin/fmlalias
new file mode 100644
index 00000000..c2bc471f
--- /dev/null
+++ b/fml/bin/fmlalias
@@ -0,0 +1,17 @@
+#! /bin/sh
+#
+# Copyright (C) 2001 Ken'ichi Fukamachi
+# All rights reserved. This program is free software; you can
+# redistribute it and/or modify it under the same terms as Perl itself.
+#
+# $FML: fmlalias.in,v 1.3 2002/04/01 23:40:53 fukachan Exp $
+#
+
+prefix=/usr/local
+exec_prefix=${prefix}
+libexec_dir=${exec_prefix}/libexec/fml
+
+exec $libexec_dir/fmlalias $*
+
+echo 'not reach here'
+exit 0;
diff --git a/fml/bin/fmlalias.in b/fml/bin/fmlalias.in
new file mode 100644
index 00000000..1a592faa
--- /dev/null
+++ b/fml/bin/fmlalias.in
@@ -0,0 +1,17 @@
+#! @SHELL@
+#
+# Copyright (C) 2001 Ken'ichi Fukamachi
+# All rights reserved. This program is free software; you can
+# redistribute it and/or modify it under the same terms as Perl itself.
+#
+# $FML: fmlalias.in,v 1.3 2002/04/01 23:40:53 fukachan Exp $
+#
+
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libexec_dir=@libexecdir@/fml
+
+exec $libexec_dir/fmlalias $*
+
+echo 'not reach here'
+exit 0;