Eshell is a command shell written in Emacs Lisp.
1
vote
0answers
42 views
Send commands to eshell from eslip
I am writing an elisp function that sends a command to an existing eshell buffer, waits for the command to finish, and send another command. For example, I would like to send:
python
2+3
So far I ...
0
votes
1answer
38 views
irb command history keystroke in irb on eshell
How can I access the command history when running irb in the emacs eshell?
When I run irb at the command line outside of emacs, I can use the up arrow to get the last command or ctrl-r to search the ...
1
vote
1answer
49 views
Changing the default Eshell Directory
Since I've started using git to manage my .emacs file, I've found it useful to keep everything in my ~/.emacs.d direcory. I would like to have eshell, therefore, read ~/.emacs/eshell.el on startup ...
0
votes
1answer
73 views
how to set an environment variable in emacs shell (eshell)?
I cant seem to find this anywhere..a lot of times I run commands with an environment variable set like:
export BLA=foo && ./somebinary
how do i do this in eshell? I think the command is ...
0
votes
1answer
65 views
Eshell/Shell aliases to M-x
In Emacs, How I can invoke the alias with M-x ? For example, I have alias to open the file as in 'alias ff find-file $1'. I like to invoke it as M-x ff RETURN $1. Similarly, I have defined alias ...
1
vote
1answer
53 views
Using grep in eshell on NTemacs
I have been trying to do a recursive grep command on files in sub folders using grep in NTemacs and Cygwin. So far the "best" results have been using grep in eshell. When I use this:
grep "t" -r *
I ...
1
vote
2answers
244 views
How does erlang:now() work?
-module(test_now).
-compile(export_all).
start() ->
{_, A, _} = now(),
loop(0, A).
loop(A) ->
{_, B, _} = now(),
if
B == A + 1 -> loop(0, B);
...
0
votes
1answer
46 views
Why does `top` return immediately in eshell?
Can eshell run top command interactively as other shell does ?
Regards!
3
votes
2answers
122 views
Compiling Programs from Within Emacs?
What is the best way to compile programs inside emacs? I am currently opening a separate buffer with C-x 3 and running eshell inside it using M-x eshell then invoking either make or clang directly; ...
0
votes
1answer
89 views
eshell search history
I'm using emacs eshell and would like to search back through my command history. In bash you would do C-r then type something and then press C-r repeatedly until you find the command you want. On ...
0
votes
1answer
61 views
eshell environmental variable not appearing in eshell
I'm having a go with emacs and as part of that I've started using eshell. One thing I do regularly in a shell is maven builds. For this I need certain environmental variables to be set. I have set ...
3
votes
1answer
132 views
Emacs, smooth scrolling, scroll-margin and eshell
I like a scroll margin of around 8 or so. This means the buffer will start scrolling when the cursor gets within 8 lines of the top or bottom. However, this scheme does not work well with eshell and ...
4
votes
3answers
157 views
Emacs eshell. How to read content of command-line on pressing RET
My intention is to use bm.el Visible Bookmarks for each prompt as I press RET. I have managed to achieve this to a some degree.. Please comment on my code, below, if it is missing some important ...
1
vote
0answers
62 views
In emacs shell and eshell, \r erases the entire current line
In an emacs shell terminal window, running bash, an input of \r moves the insertion point to the start of the line, as expected, but it also erases all data which was on the line. This isn't what I ...
0
votes
0answers
95 views
How to setup encoding for emacs eshell-cmd interprocess communication?
I run Emacs under windows. I'd like to use eshell, but for it's wrong encoding in communication with windows cmd. I think it uses a cp-1251 or cp-866 encoding. So when I enter a command like
cl ...
0
votes
1answer
131 views
How do I get eshell working correctly in emacs?
For some reason, when I type in commands I'm used to on linux, it works perfectly, as it does in bash... But in eshell, it doesn't work.
I've narrowed the problem to a trivial and small sample, as ...
1
vote
1answer
94 views
How to set emacs eshell default face?
When I'm running eshell (or shell) in emacs, I would like to have the default face be a different font (like Courrier) so that eshell looks more like a "normal" shell.
Looking through the Faces for ...
2
votes
1answer
71 views
Emacs silently appends -i to shell command
And it breaks the shell I'm trying to run because it doesn't know the -i option. I've searched all variables that start with shell- but none of them has value of -i Setting explicit-shell-file-name ...
5
votes
3answers
150 views
How to do git commits in Emacs buffers
The normal way that I work is to have a small eshell buffer and a larger buffer for the code I'm working on. I use the eshell buffer to do compilation and simple tests.
If I want to do git commits, ...
2
votes
3answers
159 views
Execution environment of the script (eshell vs bash)
How to determine inside a script - whether it has been executed from a eshell or from a normal shell (bash, etc.)?
3
votes
2answers
66 views
command expansion: how to convince eshell I'm not trying to execute an elisp expression?
git grep fizzbuzz $(git rev-list --all)
fatal: Invalid object name 'Symbol's function definition is void'.
Of course, the same command in M-x shell works fine.
How do I convince eshell I'm not ...
5
votes
1answer
100 views
Equivalent of “exec” in emacs *eshell*?
I want to write an eshell function that sort of wraps an existing command-line script. In order to do this, I want to be able to execute a shell command from an eshell function. My first instinct was ...
1
vote
1answer
184 views
Emacs eshell 'ulimit' command
why i could not find ulimit command in esehll mode
but M-x ansi-term had not this problem.
how could i fix it.
like this:
~ $ ulimit -c
ulimit: command not found
~ $
4
votes
1answer
138 views
emacs shell: type once, run everywhere
Within emacs, I want to have multiple shells open, type a command once, and have it run in each shell -- similar to the way multixterm ( http://freecode.com/projects/multixterm ) does.
1
vote
2answers
138 views
How to define an alternate command for emacs eshell
I'm trying to start using eshell in place of bash within emacs, but I rely heavily on bash functions that I have written over the years. I'd like to configure eshell to invoke bash whenever a ...
4
votes
2answers
290 views
Node.js prompt '>' can not show in eshell
I want to run Node.js in eshell, but the prompt does not right:
So, how can I fix this?
2
votes
1answer
116 views
I want to replace `ls` with `ls -l` in eshell
I use eshell-parse-command 'ls -l' and I got this:
(progn (eshell-trap-errors
(eshell-named-command "ls" (list "-l"))))
Then I write a alias in my .emacs file:
(defalias 'ls
(progn ...
2
votes
1answer
279 views
What is difference between shell and eshell in emacs?
What is the difference between eshell (M-x eshell) and shell (M-x shell) in emacs. Both seems to work same but when i try to run su command or sudo command in eshell then it create a buffer named ...
5
votes
1answer
143 views
scripting with eshell
Is there a way to write .sh scripts to be used from eshell buffer? with eshell(elisp) specific commands?
I want ediff $1 $2 to be executed from my compare.sh from within eshell buffer.
2
votes
1answer
192 views
Eshell sudo does not accept option
In the eshell prompt the -E option can't be passe.
I end with the following error:
$ sudo -E gmake install
-E: command not found
Does someone have a solution to that?
Thanks
2
votes
3answers
76 views
Why am I getting strange results with sed in eshell?
I was having trouble piping the results of a 'find' to sed. I simplified it to the simplest thing I could break, and I got this:
echo 1234567890abcdefghijklmnopqrstuvwxyz | sed 's/[:digit:]*/X/g'
I ...
1
vote
1answer
106 views
Making eshell expand .. like bash
In bash, due to the layout of my keyboard, I often do cd ..<tab> to have it expand the trailing slash, however, eshell does not do this out of the box. How would I go about making it do this?
0
votes
1answer
191 views
Eshell - where is the default directory and the path defined?
Two little questions with regards to the configuration of Eshell. I looked at the customization options and even the source code, but to no avail. Maybe I should have taken a better look.
When I ...
3
votes
1answer
156 views
Emacs daemon: swapping keys
I'd like to swap C-x and C-u with Emacs daemon (since I switched to Dvorak layout). The regular keyboard-translate doesn't work with Emacs daemon. In the help-gnu-emacs I found a solution: I should ...
2
votes
1answer
94 views
Case-insensitive matching with Eshell?
How can you do case-insensitive pattern matching with Eshell? With Zsh, one can use "globbing tags" (i.e., if the extended_glob is turned on) such as in
print L(#i)in(#I)ux
which would match LINux ...
0
votes
1answer
275 views
Erlang terminal mute on Mac OS X Lion
I just installed Erlang to my mac using these instructions. http://handyrailstips.com/blog_posts/12-installing-erlang-on-mac-os-x-lion-10-7
Installation worked alright, but when I fired up the Erlang ...
0
votes
2answers
75 views
eshell Doesn't Honor display-buffer
I use display-buffer C-x 4 C-o to set a buffer to the other window. This works great unless I want to put my eshell buffer in the other window. eshell puts itself in my current window every time.
If ...
0
votes
1answer
100 views
Term-set-escape-char problem
When I start M-x eshell it gives me message "term-set-escape-char: Key sequence M-x starts with non-prefix key". It doesn't give me prompt in the eshell window.
eshell-prompt-regexp is
...
2
votes
2answers
112 views
Multi-line input in EShell
Is there a way for multi-line input in EShell?
When I want to do a quick function definition at the commandline of EShell, it doesn't really work. I tried using explicit linebreaks (\n), as well as ...
8
votes
4answers
848 views
git-log in eshell
I'm trying to run git commands in eshell. When I run:
git log -p
it will look like this:
Notice that ^[[k before the cursor. Arrow key down does not work, it will gives error says 'Not found'. ...
1
vote
1answer
305 views
emacs eshell grep on grep output
In eshell, one of the nice things is commands like grep's output will be redirected to Emacs special buffers. However, if I do a grep on previous grep, e.g.:
grep "abc" *.el | grep -v "ghi"
that ...
6
votes
2answers
796 views
Using RVM in eshell of Emacs
Using RVM in eshell of emacs, I am not able to set the ruby version. Why?
Environment : Ubuntu 9.10
/media/Work/rubyworkspace $ ruby -v
ruby 1.8.7 (2009-06-12 patchlevel 174) [i486-linux]
...
1
vote
2answers
222 views
Eshell - is there something like open-eshell-here?
In the Windows Explorer there is a function 'command-prompt-here' that opens a command prompt for the actual directory.
Is there something similar for eshell, that enables me to open an eshell from ...
4
votes
1answer
324 views
How to write eshell script?
there.
I'm new to eshell,and now i come to a problem that how can i script it.
i've tried
(rm ~/somefile)
and it worked.so is every command like this?how should i write conditional code and ...
4
votes
4answers
1k views
How to open file in Emacs via eshell?
When in eshell is there a command for opening a file in another buffer?
4
votes
1answer
278 views
Invoking su in emacs' eshell
I can run normal linux commands in eshell as a non-root user. When I try to su to root, all the usual linux commands are gone (ls, cat, etc.) How do I fix this?
14
votes
2answers
2k views
Advantages and disadvantages between zsh and emacs' (e)shell
i have currently switched over to emacs (aquamacs) and am in the process of migrating my entire workflow into it one step at a time (org-mode, dired, etc., from pathfinder, notational velocity, etc.).
...
0
votes
2answers
615 views
Eshell: commands, syntaxes, etc
Just found that unfinished manual, but it's really unfineshed. Right on the climax. I still don't get it.
What is that? An eLisp interpreter?
How do you tell emacs to edit a file from there?
What ...
4
votes
3answers
2k views
What setup file does eshell (elisp shell) read when it starts? How eshell sets its PATH?
With emacs/eshell, the "echo $PATH" shows different paths than that of $PATH environment variable.
And I also checked that eshell doesn't read .bashrc or .profile, and I think that's the reason why ...
5
votes
5answers
530 views
Create more than one eshell instance in emacs
Think: tiling my emacs window with eshells, a la xmonad. Is this possible? I can M-x eshell to open the first eshell instance but future invocations just focus the first instance.

