idelrun
来自「idel虚拟机源码」· 代码 · 共 15 行
TXT
15 行
#!/bin/sh# We use a temp file instead of a pipe so that the program run by# idelvm can read stdin. If you want to pass any arguments to idelvm,# you'll need to call it explicitly.# (TODO: parse out idelvm arguments)tmpfile=/tmp/idel-$$trap 'rm -f $tmpfile; exit 1' 1 2 15 # to clean up the file aftercppidelasm "$@" >$tmpfile && idelvm $tmpfilestatus=$?rm -f $tmpfileexit $status
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?