SlideShare a Scribd company logo
linux bc command is used for command line calculator. It is similar to basic calculator. By using which we can do basic mathematical calculations. SYNTAX: bc COMMAND:
The Syntax is
bc [options]
cal COMMAND:
cal command is used to display the calendar.
SYNTAX:
The Syntax is
cal [options] [month] [year]
cat COMMAND:
cat linux command concatenates files and print it on the standard output.

More Related Content

ODP
Prabu linux
PDF
PPTX
Linux commands part -2
PPT
Linux directory commands:more options on cd and ls command
PDF
Basic linux commands
PDF
Useful Linux and Unix commands handbook
PPT
Linux commands part3
PPTX
Linux Basic commands and VI Editor
Prabu linux
Linux commands part -2
Linux directory commands:more options on cd and ls command
Basic linux commands
Useful Linux and Unix commands handbook
Linux commands part3
Linux Basic commands and VI Editor

What's hot (12)

PDF
Linux Commands - 3
PPT
PPT
Linux commands
PPTX
PPTX
Linux commands part4
PDF
Linux basic commands with examples
PPT
Linux commands
PPTX
Unix slideshare
PPT
101 3.2 process text streams using filters
PDF
Basic linux commands
PPTX
Basic unix commands
PDF
Basic linux commands
Linux Commands - 3
Linux commands
Linux commands part4
Linux basic commands with examples
Linux commands
Unix slideshare
101 3.2 process text streams using filters
Basic linux commands
Basic unix commands
Basic linux commands
Ad

Viewers also liked (20)

PPT
Babitha5.php
PPT
Babitha5.php
ODP
Babitha.linux
ODP
Babitha.linux
ODP
Babitha.linux
ODP
Babitha.linux
PPT
Babitha5.php
PPT
El Agua
ODP
Babitha.linux
PDF
[SNU UX Lab] Describing Places
ODP
Babitha3.css
ODP
Babitha2 Mysql
ODP
Babitha.linux
ODP
Babitha.linux
PPTX
Vlaamse ardennen
ODP
Babitha.4appach
ODP
Babitha2.mysql
PPT
Expeditie mont blanc2003
PDF
Pudiya Puthagam
PDF
[SNU UX Lab] Understanding the Importance of Location, Time, and People in Mo...
Babitha5.php
Babitha5.php
Babitha.linux
Babitha.linux
Babitha.linux
Babitha.linux
Babitha5.php
El Agua
Babitha.linux
[SNU UX Lab] Describing Places
Babitha3.css
Babitha2 Mysql
Babitha.linux
Babitha.linux
Vlaamse ardennen
Babitha.4appach
Babitha2.mysql
Expeditie mont blanc2003
Pudiya Puthagam
[SNU UX Lab] Understanding the Importance of Location, Time, and People in Mo...
Ad

Similar to Babitha.linux (20)

ODP
Prabu linux
ODP
Linux commands
PDF
Linux file commands and shell scripts
PPTX
OS-Module 2 Linux Programming Important topics
PPT
Raj linux
PPT
Linux presentation
DOCX
40 basic linux command
DOCX
40 basic linux command
PPTX
Operating System Laboratory presentation .ppt
ODP
PPT
ODP
PDF
unix_ref_card.pdf
PDF
unix_ref_card.pdf
PDF
unix_ref_card.pdf
PPT
8.1.intro unix
PPT
Linux commands
PPSX
Unix_QT.ppsx
Prabu linux
Linux commands
Linux file commands and shell scripts
OS-Module 2 Linux Programming Important topics
Raj linux
Linux presentation
40 basic linux command
40 basic linux command
Operating System Laboratory presentation .ppt
unix_ref_card.pdf
unix_ref_card.pdf
unix_ref_card.pdf
8.1.intro unix
Linux commands
Unix_QT.ppsx

Babitha.linux

  • 1. linux bc command is used for command line calculator. It is similar to basic calculator. By using which we can do basic mathematical calculations. SYNTAX: bc COMMAND:
  • 5. cal command is used to display the calendar.
  • 10. cat linux command concatenates files and print it on the standard output.
  • 15. cd command is used to change the directory.
  • 18. cd [directory | ~ | ./ | ../ | - ]
  • 20. cp command copy files from one location to another. If the destination is an existing file, then the file is overwritten; if the destination is an existing directory, the file is copied into the directory (the directory is not overwritten).
  • 24. date COMMAND: date command prints the date and time. SYNTAX: The Syntax is date [options] [+format] [date] echo COMMAND:
  • 25. echo command prints the given input string to standard output.
  • 30. grep command selects and prints the lines from a file which matches a given string or pattern.
  • 33. id COMMAND: id command prints the effective(current) and real userid(UID)s and groupid(GID)s. SYNTAX: The Syntax is id [options] last COMMAND:
  • 34. last command is used to display the last logged in users list. Last logged in users informations are read from the file /var/log/wtmp.
  • 39. lastlog command is used to print the last login times for system accounts. Login information is read from the file /var/log/lastlog.
  • 43. ls COMMAND: ls command lists the files and directories under current working directory. SYNTAX: The Syntax is ls [OPTIONS]... [FILE] man COMMAND: man command which is short for manual, provides in depth information about the requested command (or) allows users to search for commands related to a particular keyword. SYNTAX: The Syntax is man commandname [options] mkdir COMMAND: mkdir command is used to create one or more directories. SYNTAX: The Syntax is mkdir [options] directories
  • 44. mv COMMAND: mv command which is short for move. It is used to move/rename file from one directory to another. mv command is different from cp command as it completely removes the file from the source and moves to the directory specified, where cp command just copies the content from one file to another. SYNTAX: The Syntax is mv [-f] [-i] oldname newname pwd COMMAND: pwd - Print Working Directory. pwd command prints the full filename of the current working directory. SYNTAX: The Syntax is pwd [options] rm COMMAND:
  • 45. rm linux command is used to remove/delete the file from the directory.
  • 48. rmdir COMMAND: rmdir command is used to delete/remove a directory and its subdirectories. SYNTAX: The Syntax is rmdir [options..] Directory sort COMMAND:
  • 49. sort command is used to sort the lines in a text file.
  • 54. Shutdown - Turn off the computer immediately or at a specified time.
  • 57. /sbin/shutdown [-t sec] [-arkhncfFHP] time [warning-message]
  • 58. who COMMAND: who command can list the names of users currently logged in, their terminal, the time they have been logged in, and the name of the host from which they have logged in. SYNTAX: The Syntax is who [options] [file] whois COMMAND: whois command lists the information about the domain owner of the given domain. SYNTAX: The Syntax is whois [option] query mkdir [OPTION] DIRECTORY Options mk
  • 59. more - Allows file contents or piped output to be sent to the screen one page at a time
  • 60. less - Opposite of the more command
  • 61. clear - Clears the terminal screen.
  • 62. cmp file1 file2 - Compares two files, reporting all discrepancies. Similar to the diff command, though the output format differs.
  • 63. wc filename --- tells you how many lines, words, and characters there are in a file
  • 64. whoami --- returns your username. Sounds useless, but isn't. You may need to find out who it is who forgot to log out somewhere, and make sure *you* have logged out.
  • 65. cd ../samples The .. says to move up to the parent directory, in this case /users/jones , and then down to the sub-directory, samples . You can also use cd .. to back up from subdirectories level by level. The head Command To view the first ten lines in a file, use the head command. Syntax: head [ -count ] filename The tail Command To view the last ten lines in a file, use the tail command. Syntax: tail [-count] filename