1

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
~ $

Droi
  • 35
  • 3

1 Answers1

2

ulimit is a shell-builtin and not a binary. ansi-term uses your normal shell (bash, zsh, or whatever you are using) while eshell is a shell of its own, and it does not seem to implement ulimit.

Dominik Honnef
  • 17,937
  • 7
  • 41
  • 43
  • Thank you Dominikh.I know how workaroud it in the eshell mode runing a normal shell – Droi Mar 04 '12 at 03:11