ghantoos / lshell

lshell is a shell coded in Python, that lets you restrict a user's environment to limited sets of commands, choose to enable/disable any command over SSH (e.g. SCP, SFTP, rsync, etc.), log user's commands, implement timing restriction, and more.
GNU General Public License v3.0
436 stars 112 forks source link

Accept built-in shell #82

Closed deimosfr closed 10 years ago

deimosfr commented 10 years ago

Hi,

Could you please add build-in shell like time.

Thanks

ghantoos commented 10 years ago

Time seems to be installed via a package on my Debian machine.

mazzika:~$ which time
/usr/bin/time
mazzika:~$ dpkg -S /usr/bin/time
time: /usr/bin/time

Is it really necessary to code this as a built-in?

deimosfr commented 10 years ago

This is not exactly the same result between this command and shell built-in time command, however it's ok for me.

Thanks