Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 318 Bytes

README-EN.md

File metadata and controls

15 lines (11 loc) · 318 Bytes

dart_pty

Language: English | 中文简体

introduction

create pseudo terminal and fork process use dart.

Usage

Map<String,String> environment = {'TEST':'TEST_VALUE'};
UnixPtyC unixPthC = UnixPtyC(environment: environment);
unixPthC.write('env');
String result = unixPthC.read();