Thanks to antville.org
Sunday, 18. October 2009
power of wget

wget is really a very powerful utility. Here is an example.

wget -mk http://oksoft.antville.org

I can download all the pages linked from my blog. And it is so easy!

-m (--mirror) Turn on options suitable for mirroring. This option turns on recursion and time-stamping, sets infinite recursion depth and keeps FTP directory list‐ings. It is currently equivalent to -r -N -l inf --no-remove-listing.

-k (--convert-links) After the download is complete, convert the links in the document to make them suitable for local viewing.

... Link (0 comments) ... Comment


Sunday, 13. September 2009
Silence of the Foxes

This simple Firefox tool lets you create custom Firefox installers which you can use to deploy Firefox’s preconfigured settings and add-ons.

http://www.msfn.org/board/silence-foxes-t43168.html

... Link (0 comments) ... Comment


Sunday, 23. August 2009
Zoom in Ubuntu

I can change the tabs in firefox by using Alt + 2 or Alt + 3 or alt + 4 etc. I accidentally found today that Window key + 2 can be used to zoom in! Window key + 1 is for Normal screen size.

... Link (0 comments) ... Comment


Sunday, 16. August 2009
Google Calculator

>> 24685316 kb in MB
shows the wrong results:
24 685 316 kilobits = 3 013.34424 megabytes

I should have typed KB in capital to find the correct MB count

>> 24685316 KB in MB
24 685 316 kilobytes = 24 106.7539 megabytes

(Note the spelling difference in kilobits and kilobytes!)

... Link (1 comment) ... Comment


Tuesday, 11. August 2009
sed can make you sad!

Changing the -e to -i in the following can be disastrous. It will replace the character "g" from all text files found in current directory as well as subfolder.

$ find . -name "*.txt" -exec sed -e 's/g//g' {} \;

Be careful with sed's -i option

___

It can also be very useful to change a string across all files...

select.worldpay.com/wcc/purchase

replace this with the new string

select.wp3.rbsworldpay.com/wcc/purchase/

The command would be...
grep 'select.worldpay.com/wcc/purchase' . -Rl | xargs sed -i 's/select.worldpay.com\/wcc\/purchase/select.wp3.rbsworldpay.com\/wcc\/purchase/g'

... Link (0 comments) ... Comment


Old date in Shell

If you need to know the 3 days old date, it easy in shell.

$ v_prev_date=`date --date='3 days ago' +%Y%m%d`

$ echo $v_prev_date
20090808

... Link (0 comments) ... Comment


Monday, 10. August 2009
Finding in Linux

I was looking for the file translate.html from my backup drives, e: and f:
Since it was taking some time on Windows system, I stared the live session of Ubuntu and used the following command after touching both the drives from "Places" menu.

find /media/ -name translate.html

Very fast and accurate results!

... Link (0 comments) ... Comment


Sunday, 9. August 2009
Number all lines in a file

perl -pe '$_ = "$. $_"'

“-p” causes Perl to assume a loop around the program (specified by “-e”) that reads each line of input into the ” $_ ” variable, executes the program and then prints the ” $_ ” variable. In this one-liner I simply modify ” $_ ” and prepend the ” $. ” variable to it. The special variable ” $. ” contains the current line number of input.
The result is that each line gets its line number prepended.

... Link (0 comments) ... Comment


Ubuntu Root

The root account is disabled by default on Ubuntu installations, mainly to prevent you from doing something you didn’t intend to do.
You can enable root account as follows:

1. Type sudo passwd root and provide a root password.
2. Then head on over to System > Administration > Login Window, go to the Security tab and check “Enable local system administrator login”

You should now be able to login as root from the Login prompt. As an alternative you can use “sudo su” to provide your password and get root prompt.

... Link (0 comments) ... Comment


Starting Ubuntu

You can make Ubuntu remember the applications you had open when you last logged out, so that when you log back in again you’ll find all those applications running and you can resume right from where you left off.

To achieve this go to System > Preferences > Startup Applications, then go to the options tab and check “Automatically remember running applications when logging out”

... Link (0 comments) ... Comment


Online for 8601 days
Last modified: 12/29/25, 8:42 AM
Status
Youre not logged in ... Login
Menu
... Home
... Tags

Search
Calendar
March 2026
SunMonTueWedThuFriSat
1234567
891011121314
15161718192021
22232425262728
293031
December
Recent updates
easyphone features for senior citizens
Auto Answer This service lets an authorised user listen discreetly...
by shantanuo (12/29/25, 8:42 AM)
install ubuntu GUI on EC2
instance #!/bin/bash set -e echo "===> Switching to text mode...
by shantanuo (11/27/25, 3:43 AM)
Extract words Extract all incorrect
words in first.txt file and all correct ones in second.txt...
by shantanuo (10/13/24, 10:18 AM)
Remove hyperlink in LO writer
1) Select "Internet Link" from Character styles. 2) Right click...
by shantanuo (10/9/24, 8:09 AM)
Templates in LO writer 1)
File > Templates > Save as Template 2) Give it...
by shantanuo (10/9/24, 8:07 AM)
discretize continuous features You can
"discretize" or "bin" continuous features into categorical features. from sklearn.preprocessing...
by shantanuo (4/24/24, 9:33 AM)
User Defined Property You
can create User Defined Property in libreoffice writer. File – Properties...
by shantanuo (1/9/23, 8:52 AM)
Arranging Chapters in the Navigator
To use a custom paragraph style for a heading, choose...
by shantanuo (1/4/23, 8:26 AM)
Use focus mode using Android
phones Settings > Digital Wellbeing and parental controls. Tap your...
by shantanuo (1/1/23, 3:59 AM)
Embed Fonts in document If
you use a font that the recipient is unlike to...
by shantanuo (12/18/22, 10:07 AM)
Using Navigator in Writer To
open the Navigator, select View > Navigator, or press the...
by shantanuo (12/18/22, 10:06 AM)
More about hyphenation The settings
for Tools > Options > Language Settings > Writing Aids...
by shantanuo (12/18/22, 10:04 AM)
link or unlink template If
you are using Libre office then template changer extension is...
by shantanuo (12/16/22, 5:27 AM)
Finding Styles you can select
Edit > Find and Replace > Other Options > Paragraph...
by shantanuo (12/14/22, 7:17 AM)
regex in clac In LibreOffice
Calc, you can use function REGEX for e.g. Begins with...
by shantanuo (12/14/22, 4:40 AM)
Libre Calc tips Turn Off
Grid Lines If you want to turn off grid lines...
by shantanuo (12/13/22, 8:14 AM)
More about Styles You can
goto View - Styles and change "All Styles" to "Applied...
by shantanuo (12/13/22, 7:49 AM)
Page Break Before Every Chapter
If your chapter titles are using the "Heading 2" Style:...
by shantanuo (12/13/22, 6:36 AM)
View and print in different
color Displaying Color in LO but Printing as White Page...
by shantanuo (12/13/22, 6:26 AM)
Change Normal Template in Libreoffice
Writer 1) Open a new file and set your font;...
by shantanuo (12/12/22, 8:45 AM)
Short english words in Devanagari
The list of short english words written in Devanagari. #...
by shantanuo (10/5/22, 9:05 AM)
Card issuing banks CITI
Standard Chartered HSBC American Express HDFC ICICI AXIS INDUS IND Kotak...
by shantanuo (7/16/22, 4:46 AM)
Activate IAM Access To activate
the Activate IAM Access setting, you must log in to...
by shantanuo (7/12/22, 5:52 AM)
use cheat instead of man
wget https://github.com/cheat/cheat/releases/download/4.2.3/cheat-linux-arm64.gz gunzip cheat-linux-arm64.gz chmod 770 cheat-linux-arm64 ./cheat-linux-arm64 mv cheat-linux-arm64...
by shantanuo (7/4/22, 8:53 AM)
python module itertools list of
useful methods of itertools module. permutations combinations combinations_with_replacement zip_longest count...
by shantanuo (9/8/21, 7:50 AM)

RSS feed

Made with Antville
Helma Object Publisher