Skip to content

Instantly share code, notes, and snippets.

@fakusb
fakusb / listCompiledNotHere.sh
Created November 19, 2020 07:44
Scripts to test for .v files without a corresponding .vo file and vise versa
#!/bin/bash
#List all .v files that do not have .vo files next to them (usefull to test what did not actually get compiled)
for f in $(find ./ -name '*.v');
do
fv="${f%.*}.vo" ;
if ! [[ -f $fv ]]; then
ls "$f"
fi
done