Learn R Programming

asciicast (version 1.0.0)

write_json: Write an ascii cast to file

Description

The file uses the asciinema file format, version 2: https://github.com/asciinema/asciinema/blob/master/doc/asciicast-v2.md.

Usage

write_json(cast, path)

Arguments

cast

asciicast object.

path

Path to write to.

See Also

Other asciicast functions: asciicast-package, asciicast_start_process(), read_cast(), record()

Examples

Run this code
# NOT RUN {
script <- system.file("examples", "hello.R", package = "asciicast")
cast <- record(script)
json <- tempfile(fileext = ".json")
write_json(cast, json)
# }

Run the code above in your browser using DataLab