From f6a63f3cea57b33c14f1edd00f1752ee5f73a1bb Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Thu, 15 Mar 2012 22:28:16 +0100 Subject: [PATCH] man page for tracefile. --- tracefile/tracefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) mode change 100644 => 100755 tracefile/tracefile diff --git a/tracefile/tracefile b/tracefile/tracefile old mode 100644 new mode 100755 index 33934e6..9f85af9 --- a/tracefile/tracefile +++ b/tracefile/tracefile @@ -1,5 +1,32 @@ #!/bin/bash +# NAME +# tracefile - list files being accessed +# +# SYNOPSIS +# tracefile [-ane] command +# +# DESCRIPTION +# tracefile will print the files being accessed by the command. +# +# OPTIONS +# -a List all files. +# +# -e List only existing files. +# +# -n List only non-existing files. +# +# AUTHOR +# Ole Tange +# +# COPYRIGHT +# Copyright © 2012 Free Software Foundation, Inc. License +# GPLv3+: GNU GPL version 3 or later +# . This is free software: you +# are free to change and redistribute it. There is NO WARRANTY, +# to the extent permitted by law. + + export _EXISTS=0 export _NONEXISTS=0