Linux: `tree`コマンドのすべてのオプションを表示できない


1

tree -Cコマンドを使用して、ディレクトリの内容を再帰的かつカラーで一覧表示しようとしています。しかし、私のシェルはエラーを報告し、sed代わりに情報入力を表示します。treeそれ自体でコマンドが正常に動作しますが、オプション(例えば、数がいるようですtree -a)私には利用できません。

新しいバージョンをインストールしようとしましたsudo apt-get install treeが、運はありません。bashzsh(LXDE / Ubuntu 14.04)の両方でこの動作が発生しています。

treeオプションの完全なセットで使用できるようにする提案(http://linux.die.net/man/1/treeに記載されています)

~ tree -C                                                                 ⏎
sed: invalid option -- 'C'
Usage: sed [OPTION]... {script-only-if-no-other-script} [input-file]...

  -n, --quiet, --silent
                 suppress automatic printing of pattern space
  -e script, --expression=script
                 add the script to the commands to be executed
  -f script-file, --file=script-file
                 add the contents of script-file to the commands to be executed
  --follow-symlinks
                 follow symlinks when processing in place
  -i[SUFFIX], --in-place[=SUFFIX]
                 edit files in place (makes backup if SUFFIX supplied)
  -l N, --line-length=N
                 specify the desired line-wrap length for the `l' command
  --posix
                 disable all GNU extensions.
  -r, --regexp-extended
                 use extended regular expressions in the script.
  -s, --separate
                 consider files as separate rather than as a single continuous
                 long stream.
  -u, --unbuffered
                 load minimal amounts of data from the input files and flush
                 the output buffers more often
  -z, --null-data
                 separate lines by NUL characters
      --help     display this help and exit
      --version  output version information and exit

If no -e, --expression, -f, or --file option is given, then the first
non-option argument is taken as the sed script to interpret.  All
remaining arguments are names of input files; if no input files are
specified, then the standard input is read.

GNU sed home page: <http://www.gnu.org/software/sed/>.
General help using GNU software: <http://www.gnu.org/gethelp/>.

回答:


1

私はコメントする評判がありませんので、これをここに置きます。

マシン上でtreeコマンドがエイリアスさsedれているように見えます。tree -Cマシンで実行すると、予期した動作が得られます。sed -Cコンピューターで実行すると、を実行したときとまったく同じ出力が得られますtree -C

~/.bashrcそのようなエイリアスを定義するエントリがファイルにありますか?


ビンゴ。しばらく前に、忘れていたいくつかの定義済みエイリアスを追加しましたtree。当時、私は知りませんでしたtree... Ubunutu用パッケージ
アイスマン

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.