diff options
Diffstat (limited to 'src/indexamajig.c')
-rw-r--r-- | src/indexamajig.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/indexamajig.c b/src/indexamajig.c index 8163465b..9abb481d 100644 --- a/src/indexamajig.c +++ b/src/indexamajig.c @@ -581,6 +581,13 @@ int main(int argc, char *argv[]) } + /* Start by writing the entire command line to stdout */ + printf("Command line:"); + for ( i=0; i<argc; i++ ) { + printf(" %s", argv[i]); + } + printf("\n"); + if ( filename == NULL ) { filename = strdup("-"); } |