Author: Binny V A
A philosopher programmer who specializes in backend development and stoicism.
Encrypt/Decrypt using GPG
March 21, 2008
Encrypt/Decrypt a file with GNU Privacy Guard – GPG. #Encrypt gpg -c file #Decrypt gpg file.gpg
Find number of lines in a file
March 20, 2008
Find the number of lines in a file using this command… cat -n file OR wc -l file
Sync Two Folders
March 18, 2008
Sync two folders using rsync command rsync -rogpav –delete /home/me /backup/folder
Convert all Ico files to Gif
March 17, 2008
I had a collection of ico files with the ext gif – these are the commands I used to fix…
‘date’ and ‘cal’ Commands
March 10, 2008
Some date finding commands.. date Mon Mar 10 23:52:08 IST 2008 cal March 2008 Su Mo Tu We Th Fr…
Create a Boot Floppy
March 9, 2008
Create a boot floppy – if you still have a floppy drive? mkbootdisk –device /dev/fd0 `uname -r`
Delete Multiple Folders
March 8, 2008
Remove two directories and their contents recursively rm -rf dir1 dir2
Recent Comments