How to run default dir command under FAR file manager?
I have Cygwin installed somewhere in the path. So I have
>where dir
D:UsersDimsDesignCygwin64bindir.exe
When I run DIR from CMD I get the normal Windows DIR:
>dir /?
Displays a list of files and subdirectories in a directory.
DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
[/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]
...
But if I run it from under FAR, it takes DIR from Cygwin:
>dir /?
/usr/bin/dir: cannot access /?: No such file or directory
So, FAR is somehow ignoring precedence of built-in Windows commands. Is it possible to re-enable it?
windows command-line path dir far-manager
add a comment |
I have Cygwin installed somewhere in the path. So I have
>where dir
D:UsersDimsDesignCygwin64bindir.exe
When I run DIR from CMD I get the normal Windows DIR:
>dir /?
Displays a list of files and subdirectories in a directory.
DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
[/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]
...
But if I run it from under FAR, it takes DIR from Cygwin:
>dir /?
/usr/bin/dir: cannot access /?: No such file or directory
So, FAR is somehow ignoring precedence of built-in Windows commands. Is it possible to re-enable it?
windows command-line path dir far-manager
1
What's yourpathenv variable?
– adampski
Oct 6 '16 at 9:59
1
Thediryou want to run is an internal command only available from Windowscmd
– DavidPostill♦
Oct 6 '16 at 12:35
add a comment |
I have Cygwin installed somewhere in the path. So I have
>where dir
D:UsersDimsDesignCygwin64bindir.exe
When I run DIR from CMD I get the normal Windows DIR:
>dir /?
Displays a list of files and subdirectories in a directory.
DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
[/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]
...
But if I run it from under FAR, it takes DIR from Cygwin:
>dir /?
/usr/bin/dir: cannot access /?: No such file or directory
So, FAR is somehow ignoring precedence of built-in Windows commands. Is it possible to re-enable it?
windows command-line path dir far-manager
I have Cygwin installed somewhere in the path. So I have
>where dir
D:UsersDimsDesignCygwin64bindir.exe
When I run DIR from CMD I get the normal Windows DIR:
>dir /?
Displays a list of files and subdirectories in a directory.
DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
[/O[[:]sortorder]] [/P] [/Q] [/R] [/S] [/T[[:]timefield]] [/W] [/X] [/4]
...
But if I run it from under FAR, it takes DIR from Cygwin:
>dir /?
/usr/bin/dir: cannot access /?: No such file or directory
So, FAR is somehow ignoring precedence of built-in Windows commands. Is it possible to re-enable it?
windows command-line path dir far-manager
windows command-line path dir far-manager
edited Feb 22 at 15:46
phuclv
10.4k64295
10.4k64295
asked Oct 6 '16 at 9:47
DimsDims
3,14744113189
3,14744113189
1
What's yourpathenv variable?
– adampski
Oct 6 '16 at 9:59
1
Thediryou want to run is an internal command only available from Windowscmd
– DavidPostill♦
Oct 6 '16 at 12:35
add a comment |
1
What's yourpathenv variable?
– adampski
Oct 6 '16 at 9:59
1
Thediryou want to run is an internal command only available from Windowscmd
– DavidPostill♦
Oct 6 '16 at 12:35
1
1
What's your
path env variable?– adampski
Oct 6 '16 at 9:59
What's your
path env variable?– adampski
Oct 6 '16 at 9:59
1
1
The
dir you want to run is an internal command only available from Windows cmd– DavidPostill♦
Oct 6 '16 at 12:35
The
dir you want to run is an internal command only available from Windows cmd– DavidPostill♦
Oct 6 '16 at 12:35
add a comment |
1 Answer
1
active
oldest
votes
dir is an internal command of cmd.exe, hence you can't run it in any other shells including Windows PowerShell. There's no separate dir.exe
C:>where dir
INFO: Could not find files for the given pattern(s).
There's no such thing like "Windows dir" or "built-in Windows commands". In PowerShell dir and ls are aliases of Get-ChildItem so you'll get an output like this instead of cmd's dir command output
PS C:> dir
Directory: C:
Mode LastWriteTime Length Name
---- ------------- ------ ----
d-r--- 3/28/2017 10:13 AM Program Files
d-r--- 3/28/2017 10:13 AM Program Files (x86)
d-r--- 1/3/2017 3:04 PM User
d----- 4/5/2017 11:14 AM Windows
4/5/2017 2:55 PM 8192 ntuser.dat
-a---- 4/7/2017 9:45 AM 152 useragent.log
The closest (and only way) you could come is calling cmd itself
cmd /c dir
or cmd /k dir if you want the cmd shell to remain.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1132050%2fhow-to-run-default-dir-command-under-far-file-manager%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
dir is an internal command of cmd.exe, hence you can't run it in any other shells including Windows PowerShell. There's no separate dir.exe
C:>where dir
INFO: Could not find files for the given pattern(s).
There's no such thing like "Windows dir" or "built-in Windows commands". In PowerShell dir and ls are aliases of Get-ChildItem so you'll get an output like this instead of cmd's dir command output
PS C:> dir
Directory: C:
Mode LastWriteTime Length Name
---- ------------- ------ ----
d-r--- 3/28/2017 10:13 AM Program Files
d-r--- 3/28/2017 10:13 AM Program Files (x86)
d-r--- 1/3/2017 3:04 PM User
d----- 4/5/2017 11:14 AM Windows
4/5/2017 2:55 PM 8192 ntuser.dat
-a---- 4/7/2017 9:45 AM 152 useragent.log
The closest (and only way) you could come is calling cmd itself
cmd /c dir
or cmd /k dir if you want the cmd shell to remain.
add a comment |
dir is an internal command of cmd.exe, hence you can't run it in any other shells including Windows PowerShell. There's no separate dir.exe
C:>where dir
INFO: Could not find files for the given pattern(s).
There's no such thing like "Windows dir" or "built-in Windows commands". In PowerShell dir and ls are aliases of Get-ChildItem so you'll get an output like this instead of cmd's dir command output
PS C:> dir
Directory: C:
Mode LastWriteTime Length Name
---- ------------- ------ ----
d-r--- 3/28/2017 10:13 AM Program Files
d-r--- 3/28/2017 10:13 AM Program Files (x86)
d-r--- 1/3/2017 3:04 PM User
d----- 4/5/2017 11:14 AM Windows
4/5/2017 2:55 PM 8192 ntuser.dat
-a---- 4/7/2017 9:45 AM 152 useragent.log
The closest (and only way) you could come is calling cmd itself
cmd /c dir
or cmd /k dir if you want the cmd shell to remain.
add a comment |
dir is an internal command of cmd.exe, hence you can't run it in any other shells including Windows PowerShell. There's no separate dir.exe
C:>where dir
INFO: Could not find files for the given pattern(s).
There's no such thing like "Windows dir" or "built-in Windows commands". In PowerShell dir and ls are aliases of Get-ChildItem so you'll get an output like this instead of cmd's dir command output
PS C:> dir
Directory: C:
Mode LastWriteTime Length Name
---- ------------- ------ ----
d-r--- 3/28/2017 10:13 AM Program Files
d-r--- 3/28/2017 10:13 AM Program Files (x86)
d-r--- 1/3/2017 3:04 PM User
d----- 4/5/2017 11:14 AM Windows
4/5/2017 2:55 PM 8192 ntuser.dat
-a---- 4/7/2017 9:45 AM 152 useragent.log
The closest (and only way) you could come is calling cmd itself
cmd /c dir
or cmd /k dir if you want the cmd shell to remain.
dir is an internal command of cmd.exe, hence you can't run it in any other shells including Windows PowerShell. There's no separate dir.exe
C:>where dir
INFO: Could not find files for the given pattern(s).
There's no such thing like "Windows dir" or "built-in Windows commands". In PowerShell dir and ls are aliases of Get-ChildItem so you'll get an output like this instead of cmd's dir command output
PS C:> dir
Directory: C:
Mode LastWriteTime Length Name
---- ------------- ------ ----
d-r--- 3/28/2017 10:13 AM Program Files
d-r--- 3/28/2017 10:13 AM Program Files (x86)
d-r--- 1/3/2017 3:04 PM User
d----- 4/5/2017 11:14 AM Windows
4/5/2017 2:55 PM 8192 ntuser.dat
-a---- 4/7/2017 9:45 AM 152 useragent.log
The closest (and only way) you could come is calling cmd itself
cmd /c dir
or cmd /k dir if you want the cmd shell to remain.
edited Sep 15 '18 at 3:23
answered Apr 6 '17 at 4:27
phuclvphuclv
10.4k64295
10.4k64295
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1132050%2fhow-to-run-default-dir-command-under-far-file-manager%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
What's your
pathenv variable?– adampski
Oct 6 '16 at 9:59
1
The
diryou want to run is an internal command only available from Windowscmd– DavidPostill♦
Oct 6 '16 at 12:35