Linux
Quick tip to change parameters in different files
Mar 16th
Quick tip to change parameters in different files
Hot:
for i in *.cfg; do mv $i $i.bak;sed ’s/a/b/’ $i.bak > $i; done
The above command is very useful to change certain regular expressions in couple of files in one directory. This can be used in variety of ways to achieve a lot of things which would normally take some time to do manually.
Sharevar el = [...]
Related Websites
Related Websites - Ayn Rand Indecisive Liberal, Prosper Blog, and Other Prosper Changes Prosper CEO called Ayn Rand an indecisive liberal when compared...
- Spring Cleaning 101 - The Natural Way To Clean The Air. Since Spring just started, I wanted to concentrate on a...
Linux find command – Find file and directories faster and easier
Mar 16th
Linux find command – Find file and directories faster and easier
Hot:
This command is very powerfull when used with combination of filters and pipes and RE.
I will give some example:
find . -type f -->> List all files
find . -type f -exec rm {} \; -->> Delete all files
find . -type d -exec rm {} \; -->> Will through some common errors
find . -name "*name*" [...]
Related Websites
Related Websites - Hunting Glossary Continued Choke Collar -This is a collar that is made out...
- Offline folders file If you use a Microsoft Exchange e-mail account rather than,...
Edit a File When You Are Viewing It Using more / less Command
Mar 16th
Edit a File When You Are Viewing It Using more / less Command
Hot:
Aritcle here.
Edit a File When You Are Viewing It Using more / less Command
More >
Sharevar el = document.getElementById('share-link-637893540');el.params = {title: 'Edit a File When You Are Viewing It Using more / less Command', link: 'http://blog.amit-agarwal.co.in/2010/03/16/edit-a-file-when-you-are-viewing-it-using-more-less-command/', skin: 'blue', content: 'http://blog.amit-agarwal.co.in/?ibsa=get_content&id=261'};Originally posted 2008-11-02 20:41:41.
Related Websites
Related Websites - eBook Fishing in California The Complete Guide to California Fishing Download Your 32 Page...
- How To Run And Play Classic DOS Games On Your Computer It's been a long time since I posted something on...































