Re: command history via Web-console.

2012-05-03 Thread Muhammad Yousuf Khan
ok, Thanks for the nice info. On Wed, May 2, 2012 at 8:54 PM, Christofer C. Bell wrote: > On Wed, May 2, 2012 at 3:21 AM, Muhammad Yousuf Khan wrote: >> Hello everyone, >> >> >> I am using few web front end tools in debian and other destros and for >> learning purpose i would like to know the

Re: command history via Web-console.

2012-05-02 Thread Christofer C. Bell
On Wed, May 2, 2012 at 3:21 AM, Muhammad Yousuf Khan wrote: > Hello everyone, > > > I am using few web front end tools in debian and other destros and for > learning purpose i would like to know the command history that has > been ran via Web console. does linux provide any option by which i can >

Re: Command history

2011-04-29 Thread Richard Hector
On Thu, 2011-04-28 at 15:13 +0300, Sophoklis Goumas wrote: > $ pgrep bash > $ kill or kill $$ I use that whenever I type/paste a password into my shell in the wrong sequence :-) (I actually kill -9 $$ just to be sure :-) Richard -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian

Re: Command history

2011-04-28 Thread Andrei Popescu
On Jo, 28 apr 11, 15:13:11, Sophoklis Goumas wrote: > > Instead of tampering with your system what would you say on issuing those > sensitive commands in a new shell and then KILL that shell? Cool ideea ;) > For example: > > $ echo "This will propably get into .bash_history." > This will propab

Re: Command history

2011-04-28 Thread shawn wilson
(heh, just realized that my earlier reply didn't go to the list) at any rate, thank y'all, preceding the command with space does the job just fine. i'll have to read up on HISTCONTROL and HISTIGNORE. these look pretty powerful (for my use). -- To UNSUBSCRIBE, email to debian-user-requ...@lists.d

Re: Command history

2011-04-28 Thread Andrew McGlashan
Hi Shawn, shawn wilson wrote: Is there a way to have a command that does not show up in history? Or a way to pipe a string where the string doesn't show up in history? Ie, I set some passwords with: echo "some string and stuff" ¦ sha512sum (Probably with cut and awk and other such things) And

Re: Command history

2011-04-28 Thread Kelly Clowers
On Wed, Apr 27, 2011 at 23:51, Vangelis Katsikaros wrote: > On 04/28/2011 02:25 AM, Kamaraju S Kusumanchi wrote: >> >> shawn wilson wrote: >> >>> Is there a way to have a command that does not show up in history? Or a >>> way to pipe a string where the string doesn't show up in history? >>> >>> Ie

Re: Command history

2011-04-28 Thread Sophoklis Goumas
On Thu, Apr 28, 2011 at 01:58, shawn wilson wrote: > ... > > And I'd like a way for my system to not store my password scheme. I'd prefer > something better than editing my history file. Instead of tampering with your system what would you say on issuing those sensitive commands in a new shell an

Re: Command history

2011-04-28 Thread Arno Schuring
shawn wilson (ag4ve...@gmail.com on 2011-04-27 18:58 -0400): > Is there a way to have a command that does not show up in history? Or > a way to pipe a string where the string doesn't show up in history? see the HISTIGNORE variable in the bash manual, and edit ~/.bashrc accordingly. Most used is so

Re: Command history

2011-04-28 Thread Clive Standbridge
> Is there a way to have a command that does not show up in history? > Or a way to pipe a string where the string doesn't show up in > history? > > Ie, I set some passwords with: > echo "some string and stuff" | sha512sum > (Probably with cut and awk and other such things) Apart from beginning th

Re: Command history

2011-04-27 Thread Vangelis Katsikaros
On 04/28/2011 02:25 AM, Kamaraju S Kusumanchi wrote: shawn wilson wrote: Is there a way to have a command that does not show up in history? Or a way to pipe a string where the string doesn't show up in history? Ie, I set some passwords with: echo "some string and stuff" ¦ sha512sum (Probably w

Re: Command history

2011-04-27 Thread Kamaraju S Kusumanchi
shawn wilson wrote: > Is there a way to have a command that does not show up in history? Or a > way to pipe a string where the string doesn't show up in history? > > Ie, I set some passwords with: > echo "some string and stuff" ¦ sha512sum > (Probably with cut and awk and other such things) > >