=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== vsearch-2.15.1/README.md-111- vsearch-2.15.1/README.md:112:Linux and Mac: You will now have the binary distribution in a folder called `vsearch-2.15.1-linux-x86_64` or `vsearch-2.15.1-macos-x86_64` in which you will find three subfolders `bin`, `man` and `doc`. We recommend making a copy or a symbolic link to the vsearch binary `bin/vsearch` in a folder included in your `$PATH`, and a copy or a symbolic link to the vsearch man page `man/vsearch.1` in a folder included in your `$MANPATH`. The PDF version of the manual is available in `doc/vsearch_manual.pdf`. vsearch-2.15.1/README.md-113- ############################################## vsearch-2.15.1/README.md-116- vsearch-2.15.1/README.md:117:**Documentation** The VSEARCH user's manual is available in the `man` folder in the form of a [man page](https://github.com/torognes/vsearch/blob/master/man/vsearch.1). A pdf version ([vsearch_manual.pdf](https://github.com/torognes/vsearch/releases/download/v2.15.1/vsearch_manual.pdf)) will be generated by `make`. To install the manpage manually, copy the `vsearch.1` file or a create a symbolic link to `vsearch.1` in a folder included in your `$MANPATH`. The manual in both formats is also available with the binary distribution. The manual in PDF form ([vsearch_manual.pdf](https://github.com/torognes/vsearch/releases/download/v2.15.1/vsearch_manual.pdf)) is also attached to the latest [release](https://github.com/torognes/vsearch/releases). vsearch-2.15.1/README.md-118- ############################################## vsearch-2.15.1/debian/createmanpages-4- vsearch-2.15.1/debian/createmanpages:5:VERSION=`dpkg-parsechangelog | awk '/^Version:/ {print $2}' | sed -e 's/^[0-9]*://' -e 's/-.*//' -e 's/[+~]dfsg$//'` vsearch-2.15.1/debian/createmanpages-6-NAME=`grep "^Description:" debian/control | sed 's/^Description: *//' | head -n1` ############################################## vsearch-2.15.1/debian/rules-37- mkdir -p ../vsearch-data && \ vsearch-2.15.1/debian/rules:38: for datadir in `find $(VDATADIR) -type d | sed -e "s#$(VDATADIR)/*##" -e "/^$$/d"` ; do mkdir -p ../vsearch-data/$${datadir} ; done && \ vsearch-2.15.1/debian/rules:39: for datafile in `find $(VDATADIR) -type f` ; do \ vsearch-2.15.1/debian/rules:40: ln -s $${datafile} `echo $${datafile} | sed -e "s#$(VDATADIR)/#../vsearch-data/#"` ; \ vsearch-2.15.1/debian/rules-41- done && \