Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
upy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
upy
Commits
10bc72bc
There was an error fetching the commit references. Please try again later.
Commit
10bc72bc
authored
1 year ago
by
Neil Gershenfeld
Browse files
Options
Downloads
Patches
Plain Diff
wip
parent
06624532
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
upy.py
+4
-0
4 additions, 0 deletions
upy.py
with
4 additions
and
0 deletions
upy.py
+
4
−
0
View file @
10bc72bc
...
...
@@ -31,6 +31,7 @@ s.write(b'\x01') # ^a enter raw mode
while
(
s
.
in_waiting
>
0
):
# clear buffer
s
.
read
()
if
(
sys
.
argv
[
2
]
==
'
run
'
):
s
.
write
(
b
'
\x04
'
)
# ^d reset
s
.
write
(
b
'
\x03
'
)
# ^c interrupt
file
=
open
(
sys
.
argv
[
3
],
'
r
'
)
str
=
file
.
read
()
...
...
@@ -42,6 +43,7 @@ if (sys.argv[2] == 'run'):
while
(
True
):
# show output
sys
.
stdout
.
write
(
s
.
read
().
decode
(
'
utf-8
'
))
elif
(
sys
.
argv
[
2
]
==
'
ls
'
):
s
.
write
(
b
'
\x04
'
)
# ^d reset
s
.
write
(
b
'
\x03
'
)
# ^c interrupt
s
.
write
(
b
'
import os
\n
'
)
s
.
write
(
b
'
files = os.listdir()
\n
'
)
...
...
@@ -54,6 +56,7 @@ elif (sys.argv[2] == 'ls'):
sys
.
stdout
.
write
(
s
.
read
().
decode
(
'
utf-8
'
))
print
(
''
)
elif
(
sys
.
argv
[
2
]
==
'
put
'
):
s
.
write
(
b
'
\x04
'
)
# ^d reset
s
.
write
(
b
'
\x03
'
)
# ^c interrupt
file
=
open
(
sys
.
argv
[
3
],
'
r
'
)
str
=
file
.
read
()
...
...
@@ -72,6 +75,7 @@ elif (sys.argv[2] == 'put'):
sys
.
stdout
.
write
(
s
.
read
().
decode
(
'
utf-8
'
))
print
(
''
)
elif
(
sys
.
argv
[
2
]
==
'
get
'
):
s
.
write
(
b
'
\x04
'
)
# ^d reset
s
.
write
(
b
'
\x03
'
)
# ^c interrupt
s
.
write
(
bytes
(
f
'
file = open(
"
{
sys
.
argv
[
3
]
}
"
,
"
r
"
)
\n
'
,
'
ascii
'
))
s
.
write
(
b
'
print(file.read())
\n
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment