cygwin 유틸리티에 대한 와일드 카드 인수 일을합니다. 아직

명령

ls "myfolder"

csv 파일을 폴더 안에 나열하는 일을합니다. 아직

ls "myfolder/*.csv" & gt; No such file or directory

때문에

ls "myfolder/*" & gt; No such file or directory

ls "myfolder\*" & gt; No such file or directory



답변

귀하의 ls 명령을 큰 따옴표없이 :

ls myfolder/*.csv

와일드 카드 (별표) 주위에 큰 따옴표를 넣었으므로 셸은 확장을하지 않고 이름이 지정된 파일을 찾으려고 시도합니다 *.csv.

mtak@frisbee:~$ ls tst/*.txt
tst/bar.txt  tst/bla.txt  tst/foo.txt
mtak@frisbee:~$ ls "tst/*.txt"
ls: cannot access tst/*.txt: No such file or directory


답변