On 7/7/22 3:02 PM, Mark Sapiro wrote:
On 7/7/22 1:36 PM, David Newman wrote:
That was my first thought too. But there's nothing in that directory beginning with a hyphen, not even with the -a switch.
What about
ls -la /opt/mailman/venv/lib/python3.9/site-packages/*-jango*
and if that shows nothing,
grep -r '-jango' /opt/mailman/venv/lib/python3.9/site-packages/
Nothing from the first command.
The second command thinks '-j' is grep switch, and throws an invalid-option error:
root@somehost:/opt/mailman/venv/lib/python3.9/site-packages# grep -r '-jango' /opt/mailman/venv/lib/python3.9/site-packages/
grep: invalid option -- 'j' Usage: grep [OPTION]... PATTERNS [FILE]...
I *think* the command runs if I escape the hyphen:
root@somehost:/opt/mailman/venv/lib/python3.9/site-packages# grep -r '\-jango' /opt/mailman/venv/lib/python3.9/site-packages/
But then that doesn't return anything.
dn