mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-07 19:51:51 +09:00
11 lines
223 B
JavaScript
11 lines
223 B
JavaScript
let fout = files.open("$:/FBIPF")
|
|
let fin = files.open(_G.shell.resolvePathInput(exec_args[1]).full)
|
|
|
|
let ipfRead = fin.bread()
|
|
println(`Input file: ${ipfRead.length} bytes`)
|
|
|
|
fout.bwrite(ipfRead)
|
|
|
|
fin.close()
|
|
fout.close()
|