Linux-Noob Forums
Your Top Ten Program List - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: General Stuff (https://www.linux-noob.com/forums/forum-4.html)
+--- Forum: General Chat (https://www.linux-noob.com/forums/forum-64.html)
+--- Thread: Your Top Ten Program List (/thread-2134.html)

Pages: 1 2


Your Top Ten Program List - djsmiley2k - 2006-02-26


Quote:<blockquote data-ipsquote="" class="ipsQuote" data-ipsquote-contentapp="forums" data-ipsquote-contenttype="forums" data-ipsquote-contentid="2114" data-ipsquote-contentclass="forums_Topic"><div>Znx, 

we both forgot what maybe the most importage program ever for gentoo users....
 

isn't that

 

Quote:rm -rf /
lol ;) 

NOTE: noobs, do NOT do the above command it erases everything (which on a gentoo install might not be such a bad thing ;-))

</div></blockquote>
 

I was going to say "not unless they are root", but then again they might just be root if they are noobs :/[img]<___base_url___>/uploads/emoticons/default_ohmy.png[/img]o_O[img]<___base_url___>/uploads/emoticons/default_dry.png[/img]




Your Top Ten Program List - yokosucks - 2006-03-02


currently most used of my top ten, in order of use:

<ol style="list-style-type:decimal;">[*]eterm

[*]gkrellm

[*]firefox

[*]pico

[*]kismet (warsitting is fun)

[*]ethereal (learning how to use it so i can set up a wardriving honeypot (warpot?))

</ol>less often used, but still loved, in no order:
  • ssh

  • xephem

  • irssi

  • xmms





Your Top Ten Program List - Navrax - 2006-03-03


Top Ten

 

(1) nmap

(2) openssh

(3) snort

(4) conky

(5) xmms

(6) gkrellm

(7) firefox

(8) .........

...........

.............

I'm a noob, my favourite programs include Xchat and Gaim! LAwl.

 

I want my GODDAMN ftp to work! Soon that will be at the top...File servers are good in time of need.




Your Top Ten Program List - Cobi - 2006-03-14


ls

w

cat

php

vi

vim

ps

cd

su

ssh

 

In that order according to how many times I've ran those programs.

 

for i in `cat ~/.bash_history|awk '{print $1}'|sort -u|xargs`; do echo `cat ~/.bash_history |grep $i |wc -l` $i; done | sort --numeric

will show you your most used programs




Your Top Ten Program List - djsmiley2k - 2006-03-14


176 g

196 su

226 n

382 s

 

 

I know what su is, but anyone give me a clue about the other commands?




Your Top Ten Program List - znx - 2006-03-15


Quote:In that order according to how many times I've ran those programs. 

for i in `cat ~/.bash_history|awk '{print $1}'|sort -u|xargs`; do echo `cat ~/.bash_history |grep $i |wc -l` $i; done | sort --numeric

will show you your most used programs
 

Hrmm this doesn't look quite right.. maybe

 



Code:
for p in `awk '{print $1}' < .bash_history | sort -u`; do echo `grep -c $p ~/.bash_history` $p; done | sort -n | tail




 

Notice .. if you ever cat to a command a simple redirect will do. You don't need to cat to a grep and grep has count (-c) so no need for wc :)Also I am not quite sure what the xargs was for?

 

Anyhoo .. nice idea... :)




Your Top Ten Program List - lia - 2006-03-16


Im always root LOL

Makes me wanna try it...