[ホーム] -
[Windows 7 FAQ 一覧] - [cygwin のfileコマンドで「POSIX 形式のパスではない」と警告が出力される場合の対処方法]
cygwin のfileコマンドを実行した場合、以下のエラー(POSIX 形式のパスではない)と警告が表示される場合があります。
(以下は file c:\temp\test.txt を実行した場合の結果です。)
cygwin warning:
MS-DOS style path detected: c:\temp\test.txt
Preferred POSIX equivalent is: /cygdrive/c/temp/test.txt
CYGWIN environment variable option "nodosfilewarning" turns off this warning.
Consult the user's guide for more details about POSIX paths:
http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
この警告を回避するには、環境変数で nodosfilewarning を設定してください。
set CYGWIN=%CYGWIN% nodosfilewarning
以上で警告が表示されなくなります。