Any thoughts on this command? Does it work on your machine? Can you do the same thing with only 14 characters?
You must be signed in to comment.
commandlinefu.com is the place to record those command-line gems that you return to again and again. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
echo '/etc/sysconfig/network' > testglob
grep sysconfig.network testglob
/etc/sysconfig/networkls /etc/sysconfig.network
ls: cannot access /etc/sysconfig.network: No such file or directory They're similar but not the same and its dangerous to use them as equal (and that goes for using any two different but similar things as equals). And yes its worth your time to learn the commands in full (unless of course you're afraid of the command prompt and its features like some are afraid of using > instead of >> which is ridiculous if you know what you are doing). I would also add that using xargs is still useful with find. Quite useful even - xargs is designed to work with find (example: -printf with '\0' or -print0 and xargs option -0 are used together). xargs is also used for long command lines (and associated risks with). Any way, as I wrote, I rarely will post here or even check here but I wanted to clarify these points (or at least the point about file globbing and regular expressions being different) because it is quite an important thing to consider.