1 / 26

File Management commands

File Management commands. cat. Cat command cat cal.txt cat command displays the contents of a file here cal.txt on screen (or standard out). Cat > filename. Cat command cat > cal.txt cat output the contents to a file here cal.txt. It is redirecting the contents to the file.

cirila
Download Presentation

File Management commands

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. File Management commands

  2. cat • Cat command cat cal.txt cat command displays the contents of a file here cal.txt on screen (or standard out).

  3. Cat > filename • Cat command cat > cal.txt cat output the contents to a file here cal.txt. It is redirecting the contents to the file. • touch filename

  4. ls • ls command is most widely used command and it displays the contents of directory. • options • ls will list all the files in your home directory, this command has many options. • ls -l will list all the file names, permissions, group, etc in long format. • ls -a will list all the files including hidden files that start with . . • ls -lt will list all files names based on the time of creation, newer files bring first. • ls -Fxwill list files and directory names will be followed by slash. • ls -Rwill lists all the files and files in the all the directories, recursively. • ls -R | more will list all the files and files in all the directories, one page at a time.

  5. ls • -rw-r--r-- 1 lnp5jb 777 Dec 18 lookup.icn • The first set of characters in the output from the command (-rw- r-- r--) gives the permissions. The username in the middle of the line (lnp5jb) is the owner of the file. This is user who created the file. The following fields tell you the number of characters in the file, the date it was created and the name of the file.

  6. mkdir • mkdir • mkdir deep • will create new directory, i.e. here deep directory is created.

  7. cd • Cd command. cd sandeep • will change directory from current directory to sandeep directory. Use pwd to check your current directory and ls to see if sandeep directory is there or not. You can then use cd sandeep to change the directory to this new directory.

  8. head • head filename • by default will display the first 10 lines of a file. • If you want first 50 lines you can use head -50 filename or for 37 lines head -37 filename and so forth.

  9. tail • Tail command. tail filename by default will display the last 10 lines of a file. If you want last 50 lines then you can use tail -50 filename.

  10. more • More command. more command will display a page at a time and then wait for input which is spacebar. For example if you have a file which is 500 lines and you want to read it all. So you can use • more filename

  11. wc • Wc command wc command counts the characters, words or lines in a file depending upon the option. • wc filename • wc -l filename will print total number of lines in a file. • wc -w filename will print total number of words in a file. • wc -c filename will print total number of characters in a file.

  12. File command displays about the contents of a given file, whether it is a text (Ascii) or binary file. To use it type file filename

  13. cp • Cp command. cp command copies a file. If I want to copy a file named oldfile in a current directory to a file named newfile in a current directory. cp oldfilenewfile cp –p olddirnerdir • If I want to copy oldfile to other directory for example /tmp thencp oldfile /tmp/newfile. • options available with cp are -p and -r . • -p options preserves the modification time and permissions, • -r recursively copy a directory and its files, duplicating the tree structure.

  14. mv • mv command is used to move a file from one directory to another directory or to rename a file. • Some examples: • mvoldfilenewfilewill rename oldfile to newfile. • mv -ioldfilenewfilefor confirmation prompt. • mv -f oldfilenewfilewill force the rename even if target file exists. • mv * /usr/bajwa/ will move all the files in current directory to /usr/bajwa directory.

  15. ln • Ln command. Instead of copying you can also make links to existing files using ln command. If you want to create a link to a file called coolfile in /usr/local/bin directory then you can enter this command. lnmycoolfile /usr/local/bin/coolfile • Some examples: ln -s fileonefiletwo will create a symbolic link and can exist across machines. • ln -n option will not overwrite existing files. • ln -f will force the link to occur.

  16. rm • Rm command. To delete files use rm command. • Options: rm oldfile will delete file named oldfile. • rm -f option will remove write-protected files without prompting. • rm -r option will delete the entire directory as well as all the subdirectories, (use with care)

  17. rmdir • Rmdir command. rmdir command will remove directory or directories if a directory is empty. • Options: • rm -r directory_namewill remove all files even if directory is not empty. • rmdirsandeepis how you use it to remove sandeep directory. • rmdir -p will remove directories and any parent directories that are empty. • rmdir -s will suppress standard error messages caused by -p.

  18. Misc Commands

  19. Misc Commands • Man ual command.man man This is help command, and will explains you about online manual pages you can also use man in conjunction with any command to learn more about that command for example. • man ls will explain about the ls command and how you can use it.

  20. banner • Banner command.banner prints characters in a sort of ascii art poster. • banner aman will print aman on screen

  21. cal • Cal command cal command will print the calander on current month by default. If you want to print calander of august of 1965. That's eightht month of 1965. cal 8 1965 will print following results.

  22. clear • Clear command • clear command clears the screen and puts cursor at beginning of first line.

  23. echo • echo command • The echo command 'echoes' its argument to the standard output. This means that in its simplest form it prints something out on screen. For example: • echo Hello - you type Hello - response from the shell

  24. wildcards • Wildcards • Wildcard characters can be used to identify directory and file names. The wildcard character * is used to refer to any combination of characters. For example: • ls * - refers to all files • cat test* - refers to all files starting with 'test', e.g. 'test', 'testing', 'test.c', etc. The wildcard character ? is used to refer to a single character. For example: • ls test? - refers to files starting with 'test' followed by a single character e.g. 'test1', 'test2', 'testz', etc.% cat test.? - refers to all files starting with 'test' with a single character after the full stop, e.g. 'test.c, test.f'

  25. chmod • The command chmod is used to change the permissions on a file. The format of this command is: • chmod mode filename

More Related