5 lines
103 B
Bash
Executable file
5 lines
103 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
outdated=$(pip list -o)
|
|
echo -n "$outdated"
|
|
exit "$(echo -n "$outdated" | wc -l)"
|