このルートでCmderコンソールを起動したいC:\ xampp\htdocsが、「タスクパラメーター」の構文がわかりません。例えば:
`/icon "%CMDER_ROOT%\cmder.exe`"
誰でもこれを翻訳できますか? C:\xampp\htdocs to -> /icon "%CMDER_ROOT%\cmder.exe
"
したがって、configを編集して、カスタムフォルダーを配置できます:
どうもありがとうございました。
手順:Cmder->設定->タスク-> {cmd :: Cmder}を選択します(私の場合)。下部(textareaの下)に「Startup dir ...」という名前のボタンがあり、起動ディレクトリを選択します。 cmderを閉じて、もう一度開始します。それだけです、楽しんでください
次のようにできます:
編集<APP_DIR>/config/user-startup.cmd
ファイル、行を追加します(dirが 'e:'であると仮定します):
@cd /d "e:"
ref:
次に、ConEmu/Cmderのショートカットを作成し、ショートカットプロパティの「開始:」属性を変更します。そのように:
ここで、exeの代わりにショートカットを使用します。これには、すべてのタスク(セットアップしたすべての端末)の開始場所を変更するという利点があります。
ファイルを編集します:\ CMDER_DIRECTORY\config\user-profile.cmd
cd C:\xampp\htdocs
以下の例では、ディレクトリを変更し、ホームステッドを起動するためのルーチンを作成しました。
:: use this file to run your own startup commands
:: use in front of the command to prevent printing the command
:: uncomment this to have the ssh agent load when cmder starts
:: call "%GIT_INSTALL_ROOT%/cmd/start-ssh-agent.cmd"
:: uncomment this next two lines to use pageant as the ssh authentication agent
:: SET SSH_AUTH_SOCK=/tmp/.ssh-pageant-auth-sock
:: call "%GIT_INSTALL_ROOT%/cmd/start-ssh-pageant.cmd"
:: you can add your plugins to the cmder path like so
:: set "PATH=%CMDER_ROOT%\vendor\whatever;%PATH%"
e:
cd ../../../../../Homestead
@echo off
:Ask
echo Would you like to start the Homestead?(Y/N)
set INPUT=
set /P INPUT=Yes(y) ou No(n): %=%
If /I "%INPUT%"=="y" goto yes
If /I "%INPUT%"=="Y" goto yes
If /I "%INPUT%"=="n" goto no
cls
echo Invalid option
echo -
echo -
goto Ask
:yes
vagrant up
goto finalMessage
:no
cls
goto finalMessage
:finalMessage
echo Your console is ready Mr. Chapela.