On Wednesday, November 22, 2017 at 6:07:50 AM UTC-5, Lewatle Johannes Phaladi wrote: > > Hi All, > > I am running the following command without yielding any results, I just > executed commanf without getting any results, please help. > > -bash-4.2$ ls > buildpath.bat dspace.bat log-reporter start-handle-server > dspace dspace-info.pl make-handle-config start-handle-server.bat > -bash-4.2$ dspace stats-log-converter > About to convert 'standard input' to 'standard output' > >
Notice: "convert 'standard input' to 'standard output'." It is waiting for you to type in the log data on your terminal, which is probably not what you want. You can use it as a filter: "bin/dspace stats-log-converter < foo.log > foo.stats". Or you can specify input and output files with '-i' and '-o': "bin/dspace stats-log-converter -i foo.log -o foo.stats". You can even combine piped input and file output, or vice versa. For example, you can convert a file and pipe the output to some consumer: 'bin/dspace stats-log-converter -i log/foo.log | bin/dspace stats-log-importer' will convert a DSpace log file and load it into the stat.s store. Most bin/dspace commands will provide help if you add '-h' or '-?'. -- You received this message because you are subscribed to the Google Groups "DSpace Technical Support" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/dspace-tech. For more options, visit https://groups.google.com/d/optout.
