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