summaryrefslogtreecommitdiff
path: root/ipl/procs/ftype.icn
diff options
context:
space:
mode:
Diffstat (limited to 'ipl/procs/ftype.icn')
-rw-r--r--ipl/procs/ftype.icn33
1 files changed, 33 insertions, 0 deletions
diff --git a/ipl/procs/ftype.icn b/ipl/procs/ftype.icn
new file mode 100644
index 0000000..73ad198
--- /dev/null
+++ b/ipl/procs/ftype.icn
@@ -0,0 +1,33 @@
+############################################################################
+#
+# File: ftype.icn
+#
+# Subject: Procedure to produce type for file
+#
+# Author: Ralph E. Griswold
+#
+# Date: March 10, 1998
+#
+############################################################################
+#
+# This file is in the public domain.
+#
+############################################################################
+#
+# This procedure returns the file identification produced by file(1).
+#
+############################################################################
+#
+# Requires: UNIX
+#
+############################################################################
+
+procedure ftype(file)
+
+ read(open("file " || file, "p")) ? {
+ tab(upto('\t'))
+ tab(many('\t'))
+ return tab(0)
+ }
+
+end