Earlier quoted context omitted.
I’ve never understood that one. I realize it’s just a joke, but xvf/cfv (extract/compress, view, uh,. Ok I did have to look up f, which I think is file) and the z for gzip is one of the few commands I have no trouble remembering.
Though if you include the dash to use those as flags, the second one is wrong (it treats the "v" as the file name for "f"). Without the dash, the next positional argument is the file name. Examples: These do the same thing: tar cfv foo.tar a b c tar cvf foo.tar a b c tar -cvf foo.tar a b c This errors, trying to add foo.tar to archive v: tar -cfv foo.tar a b c
From novice to master, and back again (2013)
51–60 of 150 posts
Re: From novice to master, and back again (2013)
#52Re: From novice to master, and back again (2013)
#53This reminds me of an old joke I heard a while back, which is that the opposite of "it's like riding a bike" is "it's like the UNIX command line". No matter how many times you do it, you will have to re-learn it every single time.
I use the `ln` command a lot. I use the `man ln` command _almost_ as much.
Re: From novice to master, and back again (2013)
#54This reminds me of an old joke I heard a while back, which is that the opposite of "it's like riding a bike" is "it's like the UNIX command line". No matter how many times you do it, you will have to re-learn it every single time.
This is why imo powershell (when done right) is more powerful than bash (no matter how correctly it’s done). Powershell cmdlet names are descriptive and generally make sense as do the parameter names, additionally the guidelines for how to make powershell commands forces a certain style that once you grok it makes sense for most powershell commands. If bash has something like that I’m still missing it. Obviously the…
Re: From novice to master, and back again (2013)
#55Earlier quoted context omitted.
I think what a lot of people don’t get about the Unix command line is that learning to use the tool is part of the experience. Sure I forget the precise flags to get various tools doing what I need, but browsing the man page and rediscovering the breadth of the tool is half the beauty.
The only feeling I've gotten looking at a man page is, "well, I don't have to time to dig through all of this. Guess I'll just look at stack overflow which will have my exact use case and required parameters."
Re: From novice to master, and back again (2013)
#56Re: From novice to master, and back again (2013)
#57Re: From novice to master, and back again (2013)
#58Re: From novice to master, and back again (2013)
#59Earlier quoted context omitted.
Before enlightenment: chop wood, carry water After enlightenment: chop wood, carry water
Where does existential dread fit in there?
Re: From novice to master, and back again (2013)
#60Earlier quoted context omitted.
I think what a lot of people don’t get about the Unix command line is that learning to use the tool is part of the experience. Sure I forget the precise flags to get various tools doing what I need, but browsing the man page and rediscovering the breadth of the tool is half the beauty.
What? That’s some intense Stockholm syndrome right there.
even when doing windows or embedded development with tools like visual studio or wrs tornado, i've always insisted on having mkl or cygwin for command line tasks.