トップページ
ひらく | たたむ | ページトップ
↓マウスで反転選択した文字を検索
CommandPrompt
   
ページ内検索 ページ外検索
検索したい文字を入力して
ENTERを押すと移動します。
\n
[ トップページ ]
[ ____CommandPrompt ] [ ____JScript ] [ ____MySQL ] [ ____Cygwin ] [ ____Java ] [ ____Emacs ] [ ____Make ] [ ____Perl ] [ ____Python ] [ ____OpenGL ] [ ____C# ] [ ____StyleSheet ] [ ____C++ ] [ ____Winsock ] [ ____Thread ] [ ____VisualStudio ] [ ____C ] [ ____Win32API ] [ ____Lua ] [ ____PhotoShop ]
ヘッダ検索
___

■ cmd.exe.のオプション


___

■ 起動ディレクトリを制御する

DESC cmd.exe の Shortcut 作成 Shortcut Tab で Directory 指定
___

■ 補完をONにする

DESC c-f で file 名を補間 %SystemRoot%\system32\cmd.exe /f:on W-r は PATH にある file をさがすので 次のような bat をおいておく
    :: bash.bat
    ::    bash を高速に起動
    cmd /K "D: && cd cygwin/bin && bash --login"
___

■ コマンドの出力結果を変更


  :: UNICODE
  cmd /u

  :: ANSI
  cmd /a
  
___

■ Interpreter.のしくみ

    :: quot は ["] のみ ['] はだめ

    :: OK
    > "hostname"

    :: BAD
    > 'hostname'

bash と連携する。 POINT cmd prompt は ["] を特別な文字として扱わずに CommandLine の文字列を bash にそのまま渡す。 bash は -c "/script/test.sh d:\foo\test.txt" として引数をうけとる。 結果 -c "/script/test.sh d:footest.txt" となってしまう そこで -c "/script/test.sh \"d:\foo\test.txt\"" を bash ( interpreter ) に渡す。 次のように解釈される -c /script/test.sh "d:\foo\test.txt"
    bash -c "/script/test.sh  d:\foo\test.txt"

    bash -c "/script/test.sh  \"d:\foo\test.txt\""


NINJAIDX 0