LoginSignup
4
3

More than 5 years have passed since last update.

bashとzshで.*の展開結果が異なる件

Last updated at Posted at 2015-07-21

bash

親ディレクトリとカレントディレクトリも含まれる。

$ bash --version
GNU bash, バージョン 4.2.37(1)-release (x86_64-pc-linux-gnu)
Copyright (C) 2011 Free Software Foundation, Inc.
ライセンス GPLv3+: GNU GPL バージョン 3 またはそれ以降 <http://gnu.org/licenses/gpl.html>

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
$ bash --norc
$ ls -a
.  ..  .b
$ ls -a .*
.b

.:
.  ..  .b

..:
.  ..  b

zsh

親ディレクトリとカレントディレクトリは含まれない。

$ zsh --version
zsh 4.3.17 (x86_64-unknown-linux-gnu)
$ zsh -f
% ls -a
.       ..      .b
% ls -a .*
.b
4
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3