You can find various options to do that over on Stack Overflow. One of the easiest:
PYTHONPATH="$(printf "%s:" /src/*/)"
Here, /src/*/
expands into all directories under /src/
. printf
then uses a colon (:
) as separator character.
Alle meine Python-Modulquellen befinden sich im Ordner /src/*
:
/src/module1 /src/module2 ... /src/modules100
Wenn ich alle diese Module zu meinen hinzufügen möchte PYTHONPATH
, muss ich sie .bashrc
mithilfe des export
Befehls einzeln in meine einfügen. Kann man sie mit einem Befehl hinzufügen? (Im Grunde /src/*
füge ich alles unter dem Ordner meinem PYTHONPATH hinzu)
You can find various options to do that over on Stack Overflow. One of the easiest:
PYTHONPATH="$(printf "%s:" /src/*/)"
Here, /src/*/
expands into all directories under /src/
. printf
then uses a colon (:
) as separator character.