如何使用光标在最后一行从终端打开 vscode 中的文件?
How to open file in vscode from terminal with cursor at last line?
我正在开发 Ubuntu 20.04 LTS。
我写了一个 bash 脚本,它创建了一个 .sh
带有样板行
的文件
#! /bin/bash
# this file was created by create_script.sh
并在 vscode 中打开它。但是,当文件打开时,光标位于文件的开头。
我使用的命令是code $fname
。
在$ code --help
中,我发现了以下
-g --goto <file:line[:character]> Open a file at the path on the specified line and character position.
所以我想我可以做到 code -g $fname:3:1
。 (我测试过并且有效)
但我想知道是否有一些选项可以在文件的最后一个字符处使用光标打开,这样我就可以在不使用 wc -l
等其他内容的情况下对任何文件执行此操作。我认为负索引会起作用,但它没有。
这是gnodab给出的答案。
在选项 -g file:line:character
.
中使用大量数字代替行
我正在开发 Ubuntu 20.04 LTS。
我写了一个 bash 脚本,它创建了一个 .sh
带有样板行
#! /bin/bash
# this file was created by create_script.sh
并在 vscode 中打开它。但是,当文件打开时,光标位于文件的开头。
我使用的命令是code $fname
。
在$ code --help
中,我发现了以下
-g --goto <file:line[:character]> Open a file at the path on the specified line and character position.
所以我想我可以做到 code -g $fname:3:1
。 (我测试过并且有效)
但我想知道是否有一些选项可以在文件的最后一个字符处使用光标打开,这样我就可以在不使用 wc -l
等其他内容的情况下对任何文件执行此操作。我认为负索引会起作用,但它没有。
这是gnodab给出的答案。
在选项 -g file:line:character
.