ChewLabs
Hardware Review, Smart Phone Review, Tablet Review
Sunday, January 06, 2013
Linux command to replace string in all files in directory
grep
-rl '
string1
' * |
xargs sed
-ie 's/
string1
/
string2
/g'
Change
string1
to string you want to replace.
Change
string2
to replace string.
Delete all files with same extension in Linux command
find
. -name '
*.
yourext
' -print0 | xargs -0 rm
Replace
yourext
with extension you want.
Or change
*.
yourext
to pattern that you want.
Tuesday, December 04, 2012
Blue Highlight on Desktop Icon Name Windows XP
Method 1
Right click on Desktop.
Click on "Arrange Icons By".
Uncheck on "Lock Web Items on Desktop".
Method 2
Right click on "My Computer".
Click on "Properties".
Click on "Advanced" tab.
Click on "Settings".
Click on "Visual Effects" tab.
Check on "Custom".
Check on "Use drop shadows for icon labels on the desktop".
Method 3
Right click on Desktop.
Click on "Properties".
Click on "Themes" tab.
Select "Windows XP" theme.
Click on "OK" button.
Method 4
Right click on Desktop.
Click on "Properties".
Click on "Desktop" tab.
Click on "Customize Desktop " button.
Click on "Web" tab.
Delete all item in "Web pages" box except "My Current Home Page".
Uncheck on "My Current Home Page".
Uncheck on "Lock desktop items".
Click on "OK" button.
Newer Posts
Home
Subscribe to:
Posts (Atom)