System SSH Shell API Reference¶
TODO: Add a note about SSH shell.
API Documentation¶
TODO: switch to SshShell (if class is implemented)¶
            hands_scaphoid.objects.WslShell
¶
    
              Bases: ShellExecutable
A shell executor that runs commands in Windows Subsystem for Linux.
This class prefixes commands with wsl.exe or a specific distribution executable (like debian.exe) to execute Linux commands on Windows.
Source code in src/hands_scaphoid/objects/shells/WslShell.py
                30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177  |  | 
Functions¶
            __init__(distribution='wsl', *args, **kwargs)
¶
    Initialize WslShell with a specific WSL distribution.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                distribution
             | 
            
                  str
             | 
            
               WSL distribution command (e.g., 'wsl', 'debian', 'ubuntu')  | 
            
                  'wsl'
             | 
          
                *args
             | 
            
                  List[str]
             | 
            
               | 
            
                  ()
             | 
          
                **kwargs
             | 
            
                  dict[str, str]
             | 
            
               Arguments passed to parent Shell class  | 
            
                  {}
             | 
          
Source code in src/hands_scaphoid/objects/shells/WslShell.py
              
            run(command_with_args, **kwargs)
¶
    Execute a command in WSL.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                command_with_args
             | 
            
                  str
             | 
            
               The command to execute in WSL  | 
            required | 
                **kwargs
             | 
            
                  dict[str, str]
             | 
            
               Additional arguments passed to subprocess.run  | 
            
                  {}
             | 
          
Returns:
| Type | Description | 
|---|---|
                  CompletedProcess
             | 
            
               CompletedProcess object with execution results  | 
          
Source code in src/hands_scaphoid/objects/shells/WslShell.py
              
            list_distributions()
¶
    List available WSL distributions.
Returns:
| Type | Description | 
|---|---|
                  List[str]
             | 
            
               List of available WSL distribution names  | 
          
Source code in src/hands_scaphoid/objects/shells/WslShell.py
              
            set_distribution(distribution)
¶
    Change the WSL distribution used by this shell.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                distribution
             | 
            
                  str
             | 
            
               New distribution name to use  | 
            required | 
Returns:
| Type | Description | 
|---|---|
                  bool
             | 
            
               True if distribution was successfully set, False otherwise  |