gpt4 book ai didi

terminal - 从 Racket 中启动编辑器

转载 作者:行者123 更新时间:2023-12-02 09:28:13 25 4
gpt4 key购买 nike

我正在编写一个在终端中运行的 Racket 程序。我希望能够从其中启动一个轻型编辑器(vi、pico 等)来编辑一些文本,然后在关闭时将其返回到程序。

我知道可以在 shell 脚本中执行类似的操作。在 Racket 中可以吗?如果是这样,怎么办?

最佳答案

是的,这是可能的。您可以使用 system函数及其变体,例如 system*

示例:

#lang racket

(define file (make-temporary-file))

;; run the editor you want here and pass it the file name
(system* (find-executable-path "vim") (path->string file))

;; do whatever processing you want to do on the file here
(file->string file)

这会创建一个临时文件,让 vim 编辑它,然后读回该文件。

关于terminal - 从 Racket 中启动编辑器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35763028/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com