Search for a file in a specific directory
find $DIR -name ...
Search keyword in a specific directory
grep -r ... $DIR
Building LLVM
cd ~/llvm/llvm-project/build
cmake --build .
Run all MLIR tests
cd ~/llvm/llvm-project/build
cmake --build . --target check-mlir
Run integration tests
cd ~/llvm/llvm-project/build
cmake --build . --target check-mlir-integration