Source code for reemote.facts.server.get_path

# Copyright (c) 2025 Kim Jarvis TPF Software Services S.A. kim.jarvis@tpfsystems.com 
# This software is licensed under the MIT License. See the LICENSE file for details.
#

[docs] class Get_Path: """ Returns the path environment variable of the current user. **Examples:** .. code:: python yield Get_path() """ def execute(self): from reemote.operations.server.shell import Shell r0 = yield Shell("echo /home/kim/miniconda3/envs/reemote/bin:/home/kim/miniconda3/condabin:/home/kim/miniconda3/bin:/usr/local/bin:/usr/bin:/bin:/usr/games")