LinuxMintにexuberant-ctags
パッケージをインストールしようとしています。そのために、次のコマンドを実行しました。
$ sudo apt-get install exuberant-ctags Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: exuberant-ctags 0 upgraded, 1 newly installed, 0 to remove and 81 not upgraded. Need to get 0 B/120 kB of archives. After this operation, 334 kB of additional disk space will be used. Selecting previously unselected package exuberant-ctags. (Reading database ... 339129 files and directories currently installed.) Preparing to unpack .../exuberant-ctags_1%3a5.9~svn20110310-7ubuntu0.1_amd64.deb ... Unpacking exuberant-ctags (1:5.9~svn20110310-7ubuntu0.1) ... Processing triggers for man-db (2.6.7.1-1ubuntu1) ... Setting up exuberant-ctags (1:5.9~svn20110310-7ubuntu0.1) ... update-alternatives: using /usr/bin/ctags-exuberant to provide /usr/bin/ctags (ctags) in auto mode
最後の行は、iv id =の代わりにctags-exuberant
が使用されていることを示しています。 “2b7f62355f”>
。
ただし、bashを再起動してctags -e
を実行すると、次のエラーが発生します。
ctags: invalid option -- "e"
-e
オプションはexuberant-ctags
で使用できます。
理由exuberant-ctags
がctags
に置き換えられていませんか?
$ command -v ctags /usr/local/bin/ctags
これは欲しいものではありません
$ ls -l /usr/bin/ctags lrwxrwxrwx 1 root root 23 Dec 28 2015 /usr/bin/ctags -> /etc/alternatives/ctags
$ ls -l /etc/alternatives/ctags lrwxrwxrwx 1 root root 24 Aug 9 21:22 /etc/alternatives/ctags -> /usr/bin/ctags-exuberant
$ ctags --version ctags (GNU Emacs 24.5) Copyright (C) 2015 Free Software Foundation, Inc. This program is distributed under the terms in ETAGS.README
コメント
およびctags --version
command -v ctags
とls -l /usr/bin/ctags
と