3 lines
105 B
Bash
Executable file
3 lines
105 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
cargo tree --prefix none --format '{p} {l}' | grep --invert-match -e 'MIT'
|