无法在linux中创建ctags

时间:2015-12-15 07:07:00

标签: ctags

执行" ctags -R"。

后,我收到以下错误

命令 -

var process = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo
{
  FileName = fullPath //path of msg file
};
process.StartInfo = startInfo;
process.Start();

输出 -

pihu@sc[/opt/soe/projects/sr_4k_10_1_x/pihu/sr1] >ctags -R

命令 -

/opt/tools/unsupported/bin/ctags: no input files specified.
        Try `/opt/tools/unsupported/bin/ctags --help' for a complete list of options.

输出 -

pihu@sc[/opt/soe/projects/sr_4k_10_1_x/pihu/sr1] >which ctags

附加信息 - 我在/ home / pihu路径中使用了两个文件.bashrc和.cshrc。

.bashrc: -

/opt/tools/bin/ctags

2 个答案:

答案 0 :(得分:0)

对于-R(递归)选项,您仍然需要提供路径:

Comparator

我总是喜欢先生成我想要使用的文件列表。像这样:

ctags -R .

然后我使用-L选项运行ctags,如下所示:

find . -name *.c -type f > cscope.files
find . -name *.h -type f >> cscope.files

答案 1 :(得分:0)

将点添加到ctags命令:

ctags -R .