Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jubianchi/wasmer-leaks
https://github.com/jubianchi/wasmer-leaks
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/jubianchi/wasmer-leaks
- Owner: jubianchi
- Created: 2020-11-18T20:04:39.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-24T16:38:04.000Z (about 4 years ago)
- Last Synced: 2024-10-10T14:22:01.450Z (3 months ago)
- Size: 520 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
donefor 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
```