Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jubianchi/wasmer-leaks


https://github.com/jubianchi/wasmer-leaks

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

```bash
for FILE in $(ls | grep '^[a-z_]\+\(-[a-z_]\+\)\?$' | sort)
do
if [[ -x "$FILE" ]]
then
echo $FILE
fi
done

for FILE in $(ls | grep '^[a-z_]\+\(-[a-z_]\+\)\?$' | sort)
do
if [[ -x "$FILE" ]]
then
valgrind --leak-check=full $(pwd)/"$FILE" 2> "/home/wasmer/repositories/wasmer/wasmer-leaks/$(basename $FILE)"
fi
done
```