web-dev-qa-db-ja.com

特定のフォルダーでcmder ConEmuコンソールを起動します

このルートでCmderコンソールを起動したいC:\ xampp\htdocsが、「タスクパラメーター」の構文がわかりません。例えば:

 `/icon "%CMDER_ROOT%\cmder.exe`"

誰でもこれを翻訳できますか? C:\xampp\htdocs to -> /icon "%CMDER_ROOT%\cmder.exe "

したがって、configを編集して、カスタムフォルダーを配置できます: enter image description here

どうもありがとうございました。

27
Funny Frontend

[セットアップ]に移動し、[スタートアップディレクトリ...]ボタンをクリックして、スタートアップディレクトリを指定します。例でわかるように、以下のスタートアップディレクトリはC:\ DEV enter image description here

39
Vlad Bezden

手順:Cmder->設定->タスク-> {cmd :: Cmder}を選択します(私の場合)。下部(textareaの下)に「Startup dir ...」という名前のボタンがあり、起動ディレクトリを選択します。 cmderを閉じて、もう一度開始します。それだけです、楽しんでください

4
hrvojematijevic

次のようにできます:

  1. 編集<APP_DIR>/config/user-startup.cmdファイル、行を追加します(dirが 'e:'であると仮定します):

    @cd /d "e:"

  2. cmderを再起動します。

ref:

cmder config

4
zhu wang

二通り:

  1. タスクごとにロケーションを変更する場合:「Maximus」が言ったことを実行し、%USERPROFILE%を特定のロケーションに変更します。欠点は、新しいコンソールウィンドウを作成するときに、「新しいプロセスの起動ディレクトリ」(下の画像を参照)がデフォルトのConEmuインストールディレクトリのままになることです。
  2. 新しいコンソールを作成するときに、「新しいプロセスのスタートアップディレクトリ:」の場所(デフォルトのConEmuインストールディレクトリからカスタム)を変更する場合:

enter image description here

次に、ConEmu/Cmderのショートカットを作成し、ショートカットプロパティの「開始:」属性を変更します。そのように:

enter image description here

ここで、exeの代わりにショートカットを使用します。これには、すべてのタスク(セットアップしたすべての端末)の開始場所を変更するという利点があります。

2
Artash

の中に cmder/vendor/init.bat

この行を見つける

:: Set home path

そして追加する前に

@cd /d "C:/YOUR_DIR_NAME/"


[〜#〜] ref [〜#〜]

1
Mostafa Nawara

ファイルを編集します:\ 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.
0
essemario

最後のバージョンでは、これを行うことができます:

  1. Open Cmder
  2. Presh:Windows + ALT + Tenter image description here
  3. Startup dir ...」ボタンを押します
  4. フォルダを選択enter image description here
0
Javier