In this article I will show some basic system administration related task which a normal user can perform. To complete this assignment login from normal user which we created in our first assignment.
How to count line word and character form a file
This command is used to count line words and character of file. Out will first show the line number word and in the end characters.
$wc [file name]
$wc test
2 4 23 test
how to display top and bottom line form files
head command is used to display specific number of line from top for given file.
$head –n [number] [file name]
For example this command will show the 4 top most line of file test.
$head –n 4 test
tail command will display the specific number of line form bottom for given file.
$tail –n [number] [file name]
This command will display the 3 line from bottom of file test
$tail –n 3 test
spell command will display the wrong spelling of files.how to find wrong spelling and correct them
$spell [file name]
This command will display the wrong spelling of test file. If there is no spelling mistake no out will show.
$spell test
This command is used to correct the spelling related mistake in any given files.
$aspell check [file]
This command will show the all wrong spelling from test file and there possible corrections. To use correction just press the number shown in front of words.
$aspell check test
how display logged in user information and terminal number
This command is use to display the username of currently logged.
$who am i
This command will display all the user currently logged in all terminals.
$who
This command is used to display the terminal number of currently logged in terminals.
$tty
how to display date time and calendar
This command will display the calendar of current month. You can see the calendar of any specific year also.
$cal
$cal 2010 |more
This will the current system times and date.
$date
how to use calculator
$bc
how to get help about commands
info command is used to get help about any commands.
$info [command]
This will display the help about cat commands. Generally output of info commands is more a then a page. You can quit form this out by just pressing q.
$info cat
This help options is really very useful when do not want to be read full manual page for help. This will provide very basic help like which switch will work with this command.
$command - - help
This will show the available switch cat command and a very brief descriptions about these switches.
$cat - - help
If want to read the detail about any command use this command. This will give you the complete detail about commands.
$man [command]
This command will give the complete details about the cat commands including switches and their usages. Use q to quit from the output of this commands.
$man cat
When you have a file more than one pages use less command to read the output of file despite of using cat command with more switch. As with more switch you cannot scroll the text in both directions.
$less [file]
If you have a file more than one page than use |more switch with cat to read the output. Without this switch matter of file will scroll too fast that you will see only texts of last pages.
$cat [file] |more
0 Comment:
Post a Comment