Random Thread - Anything Goes
-
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
Was the
less
command actually giving more options thanmore
a joke on the part of the creators? lolless is more
Well, it is newer. I need to get into the habit of using
less
instead ofmore
still myself.I actually never used either. I just opened everything up in a text editor and didn't edit it but that is a dangerous way to do it.
-
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
Was the
less
command actually giving more options thanmore
a joke on the part of the creators? lolless is more
Well, it is newer. I need to get into the habit of using
less
instead ofmore
still myself.You have it backwards. Less is the new one that replaced more. It's getting out of the habit of using more that us old timers need to do. We only had more when I started.
-
@scottalanmiller said in Random Thread - Anything Goes:
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
Was the
less
command actually giving more options thanmore
a joke on the part of the creators? lolless is more
Well, it is newer. I need to get into the habit of using
less
instead ofmore
still myself.You have it backwards. Less is the new one that replaced more. It's getting out of the habit of using more that us old timers need to do. We only had more when I started.
It's like I told @wirestyle22 yesterday offline, that I use them both. If I'm expecting a huge blurb of data, I'll use less. But most of the time, more does the trick.
-
@wirestyle22 said in Random Thread - Anything Goes:
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
Was the
less
command actually giving more options thanmore
a joke on the part of the creators? lolless is more
Well, it is newer. I need to get into the habit of using
less
instead ofmore
still myself.I actually never used either. I just opened everything up in a text editor and didn't edit it but that is a dangerous way to do it.
less
is really powerful. A good command to learn. -
less is basically read only vi
-
@scottalanmiller said in Random Thread - Anything Goes:
less is basically read only vi
I can buy that. You do have a way to do
less
interactively if I recall. -
So the history that this command line book gives you is really interesting and I just read a blip that said it is in fact a play on less is more. That's pretty funny.
-
@coliver said in Random Thread - Anything Goes:
@scottalanmiller said in Random Thread - Anything Goes:
less is basically read only vi
I can buy that. You do have a way to do
less
interactively if I recall.It's always interactive.
-
@coliver said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
Was the
less
command actually giving more options thanmore
a joke on the part of the creators? lolless is more
Well, it is newer. I need to get into the habit of using
less
instead ofmore
still myself.I actually never used either. I just opened everything up in a text editor and didn't edit it but that is a dangerous way to do it.
less
is really powerful. A good command to learn.Yeah I'm reading all about it and I have a test VM open to go through each command
-
@scottalanmiller said in Random Thread - Anything Goes:
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
Was the
less
command actually giving more options thanmore
a joke on the part of the creators? lolless is more
Well, it is newer. I need to get into the habit of using
less
instead ofmore
still myself.You have it backwards. Less is the new one that replaced more. It's getting out of the habit of using more that us old timers need to do. We only had more when I started.
Yeah, I was horribly imprecise again. I did mean that less is the new one.
-
@wirestyle22 said in Random Thread - Anything Goes:
So the history that this command line book gives you is really interesting and I just read a blip that said it is in fact a play on less is more. That's pretty funny.
Just caught that huh?
-
@scottalanmiller said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
So the history that this command line book gives you is really interesting and I just read a blip that said it is in fact a play on less is more. That's pretty funny.
Just caught that huh?
Well I was thinking about it and thought it might be a joke if you see my post above but it was just confirmed now. I never knew less or more were commands before yesterday
-
@wirestyle22 said in Random Thread - Anything Goes:
@scottalanmiller said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
So the history that this command line book gives you is really interesting and I just read a blip that said it is in fact a play on less is more. That's pretty funny.
Just caught that huh?
Well I was thinking about it and thought it might be a joke if you see my post above but it was just confirmed now. I never knew less or more were commands before yesterday
In school, the profs all said that the initial commands for UNIX were thought up by a bunch of drunk college people.
-
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
@scottalanmiller said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
So the history that this command line book gives you is really interesting and I just read a blip that said it is in fact a play on less is more. That's pretty funny.
Just caught that huh?
Well I was thinking about it and thought it might be a joke if you see my post above but it was just confirmed now. I never knew less or more were commands before yesterday
In school, the profs all said that the initial commands for UNIX were thought up by a bunch of drunk college people.
more
its extremely limited. You can't even scroll back.EDIT: To be completely accurate you can scroll all over a page but you can't PAGE back.
-
The more I read the more sense Linux makes and the less sense Windows makes. Symbolic links are fantastic.
-
@wirestyle22 said in Random Thread - Anything Goes:
The more I read the more sense Linux makes and the less sense Windows makes. Symbolic links are fantastic.
Welcome to the other side!
-
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
The more I read the more sense Linux makes and the less sense Windows makes. Symbolic links are fantastic.
Welcome to the other side!
We have cookies!
-
So in regards to Wildcards, I see as an example they have
Data???
which would be a file beginning with Data followed by exactly three characters. Does that mean we can doData????
so on and so forth until we hit the character limit? -
@wirestyle22 said in Random Thread - Anything Goes:
So in regards to Wildcards, I see as an example they have
Data???
which would be a file beginning with Data followed by exactly three characters. Does that mean we can doData????
so on and so forth until we hit the character limit?If you don't know the number of characters, use
*
, soData*
-
@travisdh1 said in Random Thread - Anything Goes:
@wirestyle22 said in Random Thread - Anything Goes:
So in regards to Wildcards, I see as an example they have
Data???
which would be a file beginning with Data followed by exactly three characters. Does that mean we can doData????
so on and so forth until we hit the character limit?If you don't know the number of characters, use
*
, soData*
Yeah I'm just wondering how far that can go. Seems like a weird way to do it. I'm wondering the use case. I bet it's very limited.