 |
|
| Linux Forum Index » Linux Setup » Improved Menu Script... |
|
Page 1 of 3 Goto page 1, 2, 3 Next |
|
| Author |
Message |
| Sidney Lambe... |
Posted: Wed Sep 23, 2009 7:22 am |
|
|
|
Guest
|
First off, I'd like to tell Chris F.A. Johnson, the
technocratic bully who drops by here now and then
to tell people who aren't experts like he is that
they are idiots who shouldn't be shellscripting:
If you don't like my scripts, Chris, feel free
to print them out on stiff cardboard, roll them
into a cylinder, and insert them in your fat ass.
Anyone can write shell scripts and no one requires
your approval in the matter.
---------------------------------------------------
This improved version of the former script allows
for the creation of submenus.
#!/bin/bash
#menu.sh
# Put the script in your PATH and make it executable with:
# $ chmod +rx menu.sh
# alias the script to m in your bashrc
# alias m='/usr/local/bin/menu.sh menu.txt' Then all you have to do
# to bring up the menu is enter m at the prompt.
# This script reads a list of commands in /etc/menu/menu.txt and
# creates a menu with them. The commands should be one per line
# and be whatever you would put on the commandline. Enclose each
# line in double quotes. Limit 26.
# Press the letter corresponding to the command and it runs
# submenus - If you want to create a submenu, give it a single
# name composed of all caps and follow it with =SUBMENU:
# "NAME=SUBMENU". Then create a new list in /etc/menu entitled
# NAME.txt. If it isn't a submenu there better be something
# other than caps in the command.
list=/etc/menu/${1}
set - a b c d e f g h i j k l m n o p q r s t u v w x y z
command=1
echo
while read line
do
if $(echo "$line" | grep =SUBMENU &> /dev/null)
then line="$(echo "$line" | sed 's/\"//g' | cut -d"=" -f1)"
fi
echo "${1}) $line" | sed 's/\"//g'
shift
eval var${command}="$line" 2> /dev/null
let "command += 1"
done < $list
echo
read -s -n1 bb
echo
sm ()
{
if echo "$foo" | grep '^[A-Z][A-Z]*$' &> /dev/null
then menu.sh ${foo}.txt
else
eval "$foo"
fi
}
case "$bb" in
a) foo=$(echo "$var1") ; sm ;;
b) foo=($echo "$var2") ; sm ;;
c) foo=$(echo "$var3") ; sm ;;
d) foo=$(echo "$var4") ; sm ;;
e) foo=$(echo "$var5") ; sm ;;
f) foo=$(echo "$var6") ; sm ;;
g) foo=$(echo "$var7") ; sm ;;
h) foo=$(echo "$var8") ; sm ;;
i) foo=$(echo "$var9") ; sm ;;
j) foo=$(echo "$var10") ; sm ;;
k) foo=$(echo "$var11") ; sm ;;
l) foo=$(echo "$var12") ; sm ;;
m) foo=$(echo "$var13") ; sm ;;
n) foo=$(echo "$var14") ; sm ;;
o) foo=$(echo "$var15") ; sm ;;
p) foo=$(echo "$var16") ; sm ;;
q) foo=$(echo "$var17") ; sm ;;
r) foo=$(echo "$var18") ; sm ;;
s) foo=$(echo "$var19") ; sm ;;
t) foo=$(echo "$var20") ; sm ;;
u) foo=$(echo "$var21") ; sm ;;
v) foo=$(echo "$var22") ; sm ;;
w) foo=$(echo "$var23") ; sm ;;
x) foo=$(echo "$var24") ; sm ;;
y) foo=$(echo "$var25") ; sm ;;
z) foo=$(echo "$var26") ; sm ;;
esac
Sid |
|
|
| Back to top |
|
|
|
| Loki Harfagr... |
Posted: Wed Sep 23, 2009 10:53 am |
|
|
|
Guest
|
Wed, 23 Sep 2009 15:42:09 +0000, Dan C did cat :
Quote: On Wed, 23 Sep 2009 15:22:52 +0200, Sidney Lambe wrote:
Anyone can write shell scripts and no one requires your approval in the
matter.
Anyone but you, apparently. You're clueless, Alan Connor.
This improved version of the former script allows for the creation of
submenus.
SNIP
"Improved"? LOL! It's absolute and utter garbage.
Why do you say so? I find it's either, a real effort to give a terminal
training lesson on how not to code or, one of the best puns ever
in this sad sad world of functional coding.
Imagine, he's so strung up against GUIs that he's desperately
trying and mimick one through closed QCM menus.
Truely, I'm quite impatient to see the first full presentation of
the complete O.D.E YANAWMNADE.
Besides the quality of the hilaration while reading his
most recent "'`scripts''" is definitely on an hyperbolic streak! |
|
|
| Back to top |
|
|
|
| Nico Kadel-Garcia... |
Posted: Wed Sep 23, 2009 3:42 pm |
|
|
|
Guest
|
[ bad scripting by Sidney deleted ]
No, my eyes, they ble-e-e-e-e-e-e-d-d-d-d!
Seriously, the man probably doesn't even know how to use 'case'
statements, the amazingly use of alphanumeric and unnamed variables
is... oh dear. And he's calling a shell script from inside the shell
script itself. Didn't anybody ever explain to him that calling a shell
script, recursively, by using 'scriptname' instead of '$0' is a
really, really bad idea?
For someone who shrieks about how shell is better than a GUI, how
could he write such bad shell script? |
|
|
| Back to top |
|
|
|
| jellybean stonerfish... |
Posted: Thu Sep 24, 2009 12:10 am |
|
|
|
Guest
|
On Wed, 23 Sep 2009 15:22:52 +0200, Sidney Lambe wrote:
Quote:
---------------------------------------------------
This improved version of the former script allows for the creation of
submenus.
#!/bin/bash
#menu.sh
# Put the script in your PATH and make it executable with: # $ chmod +rx
menu.sh
S N I P
case "$bb" in
a) foo=$(echo "$var1") ; sm ;;
S N I P
z) foo=$(echo "$var26") ; sm ;;
esac
Sid
Hi Sid. I read your script and I think you may be on to a great idea.
This modified version of your script lists all programs dynamically, and
does not need a configuration file.
#!/bin/bash
#menu.sh
# Based on an idea from Sidney Lambe
# His version listed 26 programs and required input of a
# letter (a-z)
# This version lists all available programs in the /usr/bin
# or /bin directory, dynamically. Then a prompt is given,
# and control is passed to the parent shell.
# Generate list of programs available.
printf "Please choose a command from the following list.\n"
ls {/usr,}/bin
# Give user promt, then return control to parent shell.
printf "Enter the name of the command.\n"
#end menu.sh
It may not look like much, but the 3 lines of code in the above script,
can replace the 100,000+ files needed to support gnome or kde. |
|
|
| Back to top |
|
|
|
| Keith Keller... |
Posted: Thu Sep 24, 2009 12:01 pm |
|
|
|
Guest
|
["Followup-To:" header set to comp.os.linux.misc.]
On 2009-09-24, Aragorn <aragorn at (no spam) chatfactory.invalid> wrote:
Quote:
His idea is worthless. If you want to script a menu system, then
GNU/Linux already offers you the means to do so in an easy fashion.
Just read...
man dialog
Heh, I was going to post something about using dialog yesterday. Great
minds think alike!
.... and so do ours. ;-)
The Slackware installer (and its package manager front-end, pkgtools)
uses dialog extensively. I find it much more usable than the X-based
installers provided by other distros. Of course, dialog might be too
GUI-intensive for ''some'' people.
--keith
--
kkeller-usenet at (no spam) wombat.san-francisco.ca.us
(try just my userid to email me)
AOLSFAQ=http://www.therockgarden.ca/aolsfaq.txt
see X- headers for PGP signature information |
|
|
| Back to top |
|
|
|
| Chris F.A. Johnson... |
Posted: Thu Sep 24, 2009 12:21 pm |
|
|
|
Guest
|
On 2009-09-24, Aragorn wrote:
Quote: On Thursday 24 September 2009 17:50, someone identifying as *jellybean
stonerfish* wrote in /comp.os.linux.misc:/
On Thu, 24 Sep 2009 14:45:07 +0000, Chris F.A. Johnson wrote:
printf '%s\n' ${PATH//:/\/* } | awk -F/ '{print $NF}' | column
The beauty of sharing code.....Thank you both for the suggestions.
You seem to be missing the irony here... ;-)
And thanks again to Sid for the original idea.
His idea is worthless. If you want to script a menu system, then
GNU/Linux already offers you the means to do so in an easy fashion.
Just read...
man dialog
... and you will see that you can come up with much nicer looking and
more efficient menus than anything Sid could have come up with. His
only motivation for doing so is his loathing of the graphical desktop
environments anyway, and this loathing stems from some very serious
psychological issues.
The only thing worse than dialog is the shell builtin, select.
Menus are simple to construct with the shell, and can be far more
flexible than dialog or select.
--
Chris F.A. Johnson, author | <http://cfaj.freeshell.org>
Shell Scripting Recipes: | My code in this post, if any,
A Problem-Solution Approach | is released under the
2005, Apress | GNU General Public Licence |
|
|
| Back to top |
|
|
|
| Joe Beanfish... |
Posted: Thu Sep 24, 2009 12:26 pm |
|
|
|
Guest
|
Nico Kadel-Garcia wrote:
Quote: [ bad scripting by Sidney deleted ]
No, my eyes, they ble-e-e-e-e-e-e-d-d-d-d!
No, my eyes, my reader's full of these nonsense threads. What good is
it to killfile anyone if you all yammer on constantly about him? |
|
|
| Back to top |
|
|
|
| Marcel Bruinsma... |
Posted: Thu Sep 24, 2009 1:03 pm |
|
|
|
Guest
|
Am Mittwoch 23 September 2009 15:22, Sidney Lambe a écrit :
Quote: This improved version of the former script allows
for the creation of submenus.
#!/bin/bash
If you put '/bin/sh' in the shebang, you might as well use some of
bash's features. In a menu with submenus there should be some
way to go back to the previous level (the example below uses ESC,
but that's probably a poor choice). And last, but not least, a few
checks for basic errors ('No such file or directory') won't hurt.
#!/bin/bash
#
# /usr/local/menu
#
menudir=/etc/menu
#
# Menu entries:
# SUBMENU=name
# Literal 'SUBMENU=' followed by name to be displayed,
# which is also the name of a menu file in $menudir.
# name=command [options] [operands]
# Descriptive name of command followed by the invoking
# command line.
# Lines without '=' are ignored (comment lines).
#
menu () {
local line name list=("P") path="$menudir/$1"
set -- 0 a b c d e f g h i j k l m n o p q r s t u v w x y z
while [ "$2" ] && read -r line; do
name=${line#SUBMENU=}
if [ "$name" = "$line" ]; then
name=${line#*=}
[ "$name" = "$line" ] && continue
list+=("C$name")
name=${line%%=*}
else
list+=("M$name")
name="[M] $name"
fi
shift
printf '\n %s) %s' "$1" "$name" >&2
done <"$path" || return 1
printf '\n\nYour choice? [a-%s] ' "$1" >&2
line=
while [ "$line" \< a -o "$line" \> "$1" ]; do
[ "$line" = $'\e' ] && { line=9; break;}
read -srn1 line <&2
done
printf '%s\n\n' "$line" >&2
printf '%s' "${list[$((36#$line-9))]}"
}
exec 2<>/dev/tty || exit 1
ml=(main); i=0
while :; do
cm=$(menu "${ml[$i]}") || exit 1
t=${cm:0:1}; cm=${cm:1}
if [ C = "$t" ]; then ${cm}
elif [ M = "$t" ]; then ml[$((++i))]=$cm
elif [ $i -ne 0 ]; then ml[$((i--))]=
else exit 0
fi
done
--
printf -v email $(echo \ 155 141 162 143 145 154 142 162 165 151 \
156 163 155 141 100 171 141 150 157 157 056 143 157 155|tr \ \\\\)
# Live every life as if it were your last! # |
|
|
| Back to top |
|
|
|
| Aragorn... |
Posted: Thu Sep 24, 2009 1:35 pm |
|
|
|
Guest
|
On Thursday 24 September 2009 18:38, someone identifying as *Wanna-Be
Sys Admin* wrote in /comp.os.linux.misc:/
Quote: Aragorn wrote:
printf '%s\n' ${PATH//:/\/* } | awk -F/ '{print $NF}' | column
The beauty of sharing code.....Thank you both for the suggestions.
You seem to be missing the irony here... ;-)
He was actually poking fun at Sid's ridiculous "menu" idea. I.e.,
effectively replacing it all with a single "ls" at one point.
Well, yes, Chris was, and of that I myself am well aware, but it seemed
to me like Jellybean on the other hand was not, which is why I said
"You seem to be missing the irony here..." ;-)
--
*Aragorn*
(registered GNU/Linux user #223157) |
|
|
| Back to top |
|
|
|
| Aragorn... |
Posted: Thu Sep 24, 2009 1:38 pm |
|
|
|
Guest
|
On Thursday 24 September 2009 20:21, someone identifying as *Chris F.A.
Johnson* wrote in /comp.os.linux.misc:/
Quote: On 2009-09-24, Aragorn wrote:
On Thursday 24 September 2009 17:50, someone identifying as
*jellybean stonerfish* wrote in /comp.os.linux.misc:/
On Thu, 24 Sep 2009 14:45:07 +0000, Chris F.A. Johnson wrote:
printf '%s\n' ${PATH//:/\/* } | awk -F/ '{print $NF}' | column
The beauty of sharing code.....Thank you both for the suggestions.
You seem to be missing the irony here... ;-)
And thanks again to Sid for the original idea.
His idea is worthless. If you want to script a menu system, then
GNU/Linux already offers you the means to do so in an easy fashion.
Just read...
man dialog
... and you will see that you can come up with much nicer looking and
more efficient menus than anything Sid could have come up with. His
only motivation for doing so is his loathing of the graphical desktop
environments anyway, and this loathing stems from some very serious
psychological issues.
The only thing worse than dialog is the shell builtin, select.
Menus are simple to construct with the shell, and can be far more
flexible than dialog or select.
Well, I just wanted to throw in some eyecandy... :p
--
*Aragorn*
(registered GNU/Linux user #223157) |
|
|
| Back to top |
|
|
|
| Wanna-Be Sys Admin... |
Posted: Thu Sep 24, 2009 3:03 pm |
|
|
|
Guest
|
Aragorn wrote:
Quote: On Thursday 24 September 2009 18:38, someone identifying as *Wanna-Be
Sys Admin* wrote in /comp.os.linux.misc:/
Aragorn wrote:
printf '%s\n' ${PATH//:/\/* } | awk -F/ '{print $NF}' | column
The beauty of sharing code.....Thank you both for the suggestions.
You seem to be missing the irony here... ;-)
He was actually poking fun at Sid's ridiculous "menu" idea. I.e.,
effectively replacing it all with a single "ls" at one point.
Well, yes, Chris was, and of that I myself am well aware, but it
seemed to me like Jellybean on the other hand was not, which is why I
said "You seem to be missing the irony here..." ;-)
I thought Jellybean was playing along like you guys were (i.e., he
didn't miss the irony). I could be wrong. I wouldn't take anyone
serious that gave Sid praise anyway, then again I've never seen Sid
post anything worth a thank you, let alone any praise.
--
Not really a wanna-be, but I don't know everything. |
|
|
| Back to top |
|
|
|
| Sidney Lambe... |
Posted: Thu Sep 24, 2009 3:26 pm |
|
|
|
Guest
|
jellybean stonerfish <stonerfish at (no spam) geocities.com> wrote:
Quote: On Wed, 23 Sep 2009 15:22:52 +0200, Sidney Lambe wrote:
---------------------------------------------------
This improved version of the former script allows for the creation of
submenus.
#!/bin/bash
#menu.sh
# Put the script in your PATH and make it executable with: # $ chmod +rx
menu.sh
S N I P
case "$bb" in
a) foo=$(echo "$var1") ; sm ;;
S N I P
z) foo=$(echo "$var26") ; sm ;;
esac
Sid
Hi Sid. I read your script and I think you may be on to a great idea.
This modified version of your script lists all programs dynamically, and
does not need a configuration file.
#!/bin/bash
#menu.sh
# Based on an idea from Sidney Lambe
# His version listed 26 programs and required input of a
# letter (a-z)
# This version lists all available programs in the /usr/bin
# or /bin directory, dynamically. Then a prompt is given,
# and control is passed to the parent shell.
# Generate list of programs available.
printf "Please choose a command from the following list.\n"
ls {/usr,}/bin
I wonder how much time on google he had to spend to find that
little script.
Quote:
# Give user promt, then return control to parent shell.
printf "Enter the name of the command.\n"
#end menu.sh
It may not look like much, but the 3 lines of code in the above script,
can replace the 100,000+ files needed to support gnome or kde.
Of course it would, Junior. And I suggest that you immediately
disinstall your GDE and rely on that script.
He _must_ be a GDE user. Doesn't even know that all you have to do is
hit Tab twice, and then y, to list all the executables on your
system. Scroll through the list with Shift-PageUp/Down.
Still, this is the most intelligent response I've gotten to date
on this thread.
These losers sure go off the deep end over a simple menu script.
Ever seen any of them post a useful script? Nope.
What you are looking at is jealousy and envy, clearly.
Sid |
|
|
| Back to top |
|
|
|
| Aragorn... |
Posted: Thu Sep 24, 2009 3:49 pm |
|
|
|
Guest
|
On Thursday 24 September 2009 23:26, someone identifying as *Sidney
Lambe* wrote in /comp.os.linux.misc:/
Quote: jellybean stonerfish <stonerfish at (no spam) geocities.com> wrote:
On Wed, 23 Sep 2009 15:22:52 +0200, Sidney Lambe wrote:
This improved version of the former script allows for the creation
of submenus.
#!/bin/bash
#menu.sh
# Put the script in your PATH and make it executable with: # $ chmod
# +rx
menu.sh
S N I P
case "$bb" in
a) foo=$(echo "$var1") ; sm ;;
S N I P
z) foo=$(echo "$var26") ; sm ;;
esac
#!/bin/bash
#menu.sh
# Based on an idea from Sidney Lambe
# His version listed 26 programs and required input of a
# letter (a-z)
# This version lists all available programs in the /usr/bin
# or /bin directory, dynamically. Then a prompt is given,
# and control is passed to the parent shell.
# Generate list of programs available.
printf "Please choose a command from the following list.\n"
ls {/usr,}/bin
I wonder how much time on google he had to spend to find that
little script.
It's not a script, you idiot, it's simply a list of all executables in
*/bin* and */usr/bin.* In other words, it's not even a menu, and it
was simply a way of telling you how you write complicated scripts to do
easy things in a complicated manner.
Quote: # Give user promt, then return control to parent shell.
printf "Enter the name of the command.\n"
#end menu.sh
It may not look like much, but the 3 lines of code in the above
script, can replace the 100,000+ files needed to support gnome or
kde.
Of course it would, Junior. And I suggest that you immediately
disinstall your GDE and rely on that script.
Why is it so hard for you to grasp that even an experienced shell user
may want to use a GDE for *some* things?
Quote: He _must_ be a GDE user.
And you're a GDE racist, apparently.
Quote: Doesn't even know that all you have to do is hit Tab twice, and then
y, to list all the executables on your system. Scroll through the list
with Shift-PageUp/Down.
Sure... There's only about 2500 to choose from on a moderate GNU/Linux
installation. Should be a breeze to go over that. Far easier than
clicking on an icon that actually has a meaningful name, right?
Quote: Still, this is the most intelligent response I've gotten to date
on this thread.
These losers sure go off the deep end over a simple menu script.
So you're missing *that* point as well, huh? It's not the script in
itself they are criticizing, but the way you present it, with arrogance
and an obvious display of the same lack of understanding of the shell
which you accuse other people of having.
Quote: Ever seen any of them post a useful script? Nope.
I have, on numerous occasions. And yes, I have saved some of them in a
dedicated folder in my newsreader, so that I can study them and
evaluate them, and reimplement them for my own purposes.
Quote: What you are looking at is jealousy and envy, clearly.
No, quite clearly, it is neither jealousy nor envy. And as others have
already said to you, if you were to conduct yourself as a serious and
friendly human being instead of the namecalling, crossposting, trolling
bully that you are, then people would actually take your seriously.
$DEITY_OF_CHOICE knows I've tried, but no matter how polite, respecting
and courteous I was with you, you immediately started calling me names
and accusing me of being other people. All because you could not
provide evidence for the claims you were making - which is not *my*
fault but *your* *own* fault; you should never make such ridiculous
claims unless you can prove them - and because I didn't agree with you
on a number of technical matters.
So in this world of freedom, apparently you have freedom of speech and I
don't - at least, according to your stance. Once you realize that you
are your own biggest problem, the solution will become easier. Here's
a clue: you need to change your ways. Nobody likes bullies or trolls.
--
*Aragorn*
(registered GNU/Linux user #223157) |
|
|
| Back to top |
|
|
|
| Sidney Lambe... |
Posted: Thu Sep 24, 2009 4:36 pm |
|
|
|
Guest
|
Sidney Lambe <sidneylambe at (no spam) nospam.invalid> wrote:
Quote: jellybean stonerfish <stonerfish at (no spam) geocities.com> wrote:
On Wed, 23 Sep 2009 15:22:52 +0200, Sidney Lambe wrote:
---------------------------------------------------
This improved version of the former script allows for the
creation of submenus.
#!/bin/bash
#menu.sh
# Put the script in your PATH and make it executable with: #
$ chmod +rx menu.sh <<< S N I P
case "$bb" in
a) foo=$(echo "$var1") ; sm ;; <<< S N I P >>>> z) foo=$(echo
"$var26") ; sm ;;
esac
Sid
Hi Sid. I read your script and I think you may be on to a
great idea. This modified version of your script lists all
programs dynamically, and does not need a configuration file.
#!/bin/bash
#menu.sh Based on an idea from Sidney Lambe His version
#listed 26 programs and required input of a letter (a-z) This
#version lists all available programs in the /usr/bin or /bin
#directory, dynamically. Then a prompt is given, and control
#is passed to the parent shell.
# Generate list of programs available. printf "Please choose a
command from the following list.\n" ls {/usr,}/bin
I wonder how much time on google he had to spend to find that
little script.
# Give user promt, then return control to parent shell. printf
"Enter the name of the command.\n"
#end menu.sh
It may not look like much, but the 3 lines of code in the
above script, can replace the 100,000+ files needed to support
gnome or kde.
This snotty juvenile delinquent and wannabee Linux runner doesn't
realize that he's hit very close to the mark.
The purpose of _my_ script _is_ to replace whatever Windows-clone
interface some corporate-sponsored technocrat has manipulated you
into becoming dependent on.
All you need is a minimal X install on top of the base system,
with a basic window manager and an x-terminal-emulator and
my script.
With it you can create a menu tree that has everything in it
that the one on your GDE currently has.
You don't need the GDE to run any of the individual apps that
come with it, just the libs, same as for any other application.
During the process of creating _your_ menu tree you will learn
a lot about the Linux OS. And then you can make your OS run
better and faster, more secure, and much easier to manage by
uninstalling kde/gnome/xfce (being sure to stash copies of the
application binaries/their configuration files, and the basic GDE
libs if you are going to be using any of the apps that came with
the GDE. I've never needed any of those apps. There are plenty of
good substitutes for them, graphical and console.
Sid
Quote:
Of course it would, Junior. And I suggest that you immediately
disinstall your GDE and rely on that script.
He _must_ be a GDE user. Doesn't even know that all you have to
do is hit Tab twice, and then y, to list all the executables on
your system. Scroll through the list with Shift-PageUp/Down.
Still, this is the most intelligent response I've gotten to
date on this thread.
These losers sure go off the deep end over a simple menu
script.
Ever seen any of them post a useful script? Nope.
What you are looking at is jealousy and envy, clearly.
|
|
|
| Back to top |
|
|
|
| Wanna-Be Sys Admin... |
Posted: Thu Sep 24, 2009 4:44 pm |
|
|
|
Guest
|
Sidney Lambe wrote:
<snip more, you fool>
Quote: # Generate list of programs available.
printf "Please choose a command from the following list.\n"
ls {/usr,}/bin
I wonder how much time on google he had to spend to find that
little script.
It's not a really a script, troll boy.
Quote: He _must_ be a GDE user. Doesn't even know that all you have to do is
hit Tab twice, and then y, to list all the executables on your
system. Scroll through the list with Shift-PageUp/Down.
And yet, you tried to write a menu script for listing them, you shell
guru, you.
Quote: Still, this is the most intelligent response I've gotten to date
on this thread.
Considerably more than your own, and he was mocking you when he posted
the better solution than your trash.
Quote: These losers sure go off the deep end over a simple menu script.
Not at all, you are the one that continues to bring it up, even starting
new threads about it, because you want to feel important. People are
just calling you on it, especially since no one asked for it in the
thread, nor did anyone ask you to start a new thread about it. If it
were something useful, that would be a different story (even if you're
not liked).
Quote: Ever seen any of them post a useful script? Nope.
I guess you should include yourself in that group.
Quote: What you are looking at is jealousy and envy, clearly.
Only a nut case like you would think anyone's jealous of you.
--
Not really a wanna-be, but I don't know everything. |
|
|
| Back to top |
|
|
|
|
|
All times are GMT - 5 Hours
The time now is Wed Nov 25, 2009 8:11 pm
|
|