Monday, 23 February 2015

 CURRENT AFFAIRS ON 22-2-15


1) Ranchi Rays won Hockey India League 2015:
--> Debutants Ranchi Rays won the third edition of the Hockey India League (HIL) defeating Punjab Warriors 3-2 in a penalty shootout in the final at the Major Dhyan Chand National Stadium on  February
--> The regulation time score read 2-2 which resulted in the shootout.
--> Though the Rays are a new team, the squad is more or less the same as that of the now non-existent Ranchi Rhinos which won the inaugural HIL in 2013.

2) Nitish Kumar sworn in as Bihar CM:
--> Nitish Kumar took oath as Bihar's CM for the fourth time on 22 February 2015.
-->  This follows the dramatic resignation of rebel JD(U) leader Jitan Ram Manjhi last week before the show of strength in the 243-member Bihar assembly.
--> He was administered the oath of office and secrecy at the Raj Bhawan in Patna by governor Keshari Nath Tripathi.

3) Dilip Shanghvi overtook Mukesh Ambani as the richest Indian:
--> Dilip Shanghvi overtakes Mukesh Ambani as the richest Indian in terms of market value.
--> The Sun Pharma's founder and MD, is worth about Rs 1.46 lakh crore thanks to his 63 per cent stake in three group companies - Sun Pharma, Sun Pharma Advanced Research and Ranbaxy Laboratories. 


4) India defeated South Africa by 137 runs in World Cup group match:
--> India announced themselves as genuine contenders to defend their World Cup title on 22 February 2015 by humbling South Africa's vaunted pace attack before bowling out the Proteas for an emphatic 130-run victory at the Melbourne Cricket Ground.
--> In front of a heaving crowd of 86,000, opener Shikhar Dhawan struck a sparkling 137 and Ajinkya Rahane an explosive 79 to fire India to a mammoth 307-7 and ensure their opponents would need a record chase at the stadium to win.
--> Shikhar Dhawan was adjudged Man of the Match.

5) India, Indonesian troops conduct joint training exercises named GARUDA SHAKTI-III:
--> Sharing experiences in conduct of counter-terrorism and insurgency operations, troops of India and Indonesia participated in joint army exercises in Mizoram.
--> The exercise was aimed at building and promoting positive military-to-military relations between the armies of the two nations, defence officials said.
--> Exercise 'GARUDA SHAKTI-III' is the third one in the ongoing series of joint exercises between armies of India and Indonesia.

6) Somdev Devvarman retained Delhi Open title:
--> Somdev Devvarman retained the Delhi Open title with a comeback win over Yuki Bhambri, whose game crumbled despite early promise in the summit clash.
--> With this victory, Somdev ended a long title-less run which began after winning this title last year.

7) In a first, women joined Sarang team:
--> For the first time, two women are part of the Sarang team of the Indian Air Force, a show-stopping helicopter-formation team that performed at the Aero India show.
--> Squadron Leader Deepika Misra and Flight Lieutenant Sandeep Singh, an engineering officer, hope that one day, there will be an all-woman quartet in the squad, whose name means peacock.

8) Maldives ex-leader Nasheed arrested on terror charges:
--> Police in the Maldives have arrested opposition leader and ex-President Mohamed Nasheed on terror charges.
--> The case against him was dropped last week, but the allegations have been reintroduced under anti-terror laws that punish acts against the state.
--> Mr Nasheed - a former human rights campaigner was president of Maldives from from 2008 to 2012.

9) World Thinking Day observed:
--> World Thinking Day was celebrated annually on 22 February by all Girl Guides and Girl Scouts.
--> It is also celebrated by Scout and Guide organizations and some boy-oriented associations around the world.

10) Indian-American, Purnendu Dasgupta, won prestigious chemistry award:
--> An Indian-American, who developed an environment friendly field analyser for checking toxic arsenic levels in water, has been awarded a prestigious award for his special contribution in the field of chemistry.

--> Purnendu Dasgupta, a Jenkins Garrett professor of chemistry at The University of Texas at Arlington, has been awarded the 2015 American Chemical Society Division of Analytical Chemistry J. Calvin Giddings Award.


Contents

   
1.
2.
3.
4.
5.
      

1. "man"

Display Manual Pages

The man command will display the manual pages for most UNIX commands. For more information on any of the Unix commands below, use this to see if there is an online manual page available. For example, if you require help on the move (mv) command, you would type:
man mv

The command syntax for man is:

man commandname

By default, the man command uses another command called more to display the manual page one screenfull at a time. To display the next screen, press the space bar. To end the display before the end of the file, press the "q" key. 

2. "ls"

List the contents of a directory

Use this command to list the contents of the current directory. This will display all files and directories within the current directory in a columnar format.
You may change the format in which ls displays your directory listing by adding options to the ls command. To add an option to the command, follow the ls command with a minus sign '-' and the option(s) you wish to add. For example, ls -l will list the current directory in long format, showing size, date, and permissions. ll is a common alias or shortcut for the list long command (ls -l).
In Unix, there are files which are normally hidden called "dotfiles". These dotfiles are files that start with a dot (i.e. a period - ".") and are used by programs and shells to retain control information such as preference settings and bookmarks. To see hidden files, use ls -a to list all files, including those files whose names begin with a period. Be careful not to remove dotfiles if you're not sure of their purpose.
The command syntax for ls is :

ls [ -aAcCdfFgilLqrstux ] filename 

If you use the ls command on a directory with many files, the display will probably scroll off the screen. To avoid this, you can "pipe" the display through the more command, just as with man pages. The Unix "pipe" symbol is a vertical bar (often a broken vertical bar on your keyboard). It means "take the command on the left, and use it as input to the command on the right". For example:

ls -la | more 

Which lists the content of the current directory, in long format (-l) and includes all files (-a), and sends the listing to the more command which displays the listing one screen at a time.

3. "cd" - and
    "mkdir"

Change Directory
Make Directory

The "change directory" command is used to switch from one directory to another. The purpose of having multiple directories is to enable you to easily organize your files. Your directory structure should resemble a filing cabinet, with folders (directories) for each set of files.
Using cd without a directory name following it will always return you to your home directory, no matter where you are in the Unix directories. To change to a subdirectory, for example one called "skiing", you would type:

cd skiing 

To "back up" a level in the directory structure from a subdirectory to its parent directory, you can use:

cd .. 

.. is a special directory which always links a directory backwards to its parent directory, you can see this directory with the ls -a command. There is a second special directory called . which always refers to the current directory.
The command syntax for cd is :

cd [directoryname] 

For more complete information on the cd command, try man cd.
The "make directory" command is used to create a new directory. As noted above, a directory serves to organize files in a manner to similar to a filing cabinet. However, unlike most filing cabinets, a single directory may contain several subdirectories. For example, to create a directory called "Banff":

mkdir Banff 

The command syntax for mkdir is:
mkdir directoryname   

4. "rm" and
    "rmdir"

Remove files
Remove Directories

The "remove" command is used to permanently delete your files from your directories. To remove a file named "whistler.ps" from the current directory:

rm whistler.ps 

To remove multiple files, use the remove command followed by the names of the files, separated by spaces. For example:

rm file1 file2 file3 

The command syntax for rm is:

rm [-fir] filename 

The "remove directory" command is used to delete your directories. The directory you wish to remove must be empty before using the rmdir command. To remove a directory called "bigsky", you would type:

rmdir bigsky 

The command syntax for rmdir is:

rmdir directoryname 

To remove a directory that is not empty (and all of its contents) you can use the rm command with the -r (recursive) option. This will recursively remove all files from a directory (or subdirectories) and then remove the directory itself. Repeating the previous example:
rm -r bigsky 

5."cp"

Copy files

The "copy" command is used to make a copy of a file in the same or a different directory. If copying to the same directory the filename of the copy must be different. This is useful for making backups or working copies of files while leaving the originals alone. To copy the file tahoe.txt to a backup file tahoe.txt.bak in the same directory:

cp tahoe.txt tahoe.txt.bak 

To copy the file named "tahoe.txt" from your home directory to a directory named "goodskiing" (without changing the name):

cp tahoe.txt goodskiing 

If you wished to rename the copied file:

cp tahoe.txt goodskiing/newname.txt 

The command syntax for cp is:
cp [ -ip ] filename1 filename2