PART 01
/Users/xxx//C/Program Files/await ws.execute('grep alert /slack/general/*.json | wc -l')await ws.execute('cat /github/mirage/README.md')await ws.execute('cp /s3/report.csv /data/local.csv')PART 02
from mirage import Workspacefrom mirage.resource.s3 import S3Resource, S3Configws = Workspace({"/data": ..., "/s3": S3Resource(S3Config(bucket="my-bucket"))})await ws.execute("grep ERROR /s3/data/log.csv > /data/error.csv")grep ERROR /s3/data/log.csv/data/error.csvPART 03
grepPART 04
夜雨聆风