#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