1

タイトル、X の場合に一方を使用し、他方を使用しない理由はありますか?

[root@localhost ~]# ls 192.168.[0,1].1
192.168.0.1  192.168.1.1
[root@localhost ~]# ls 192.168.[01].1
192.168.0.1  192.168.1.1
[root@localhost ~]# ls 192.168.[1].1
192.168.1.1
[root@localhost ~]# ls 192.168.[01].1
192.168.0.1  192.168.1.1
[root@localhost ~]# ls 192.168.[0-1].1
192.168.0.1  192.168.1.1
[root@localhost ~]# ls 192.168.[10].1
192.168.0.1  192.168.1.1
[root@localhost ~]# ls 192.168.[01].1
192.168.0.1  192.168.1.1
4

1 に答える 1