File Administration
- ls [option(s)] [file(s)]
If you run ls without any additional parameters, the program will list the contents of the current directory in short form.
- -l
- detailed list
- -a
- displays hidden files
- cp [option(s)] sourcefile targetfile
Copies sourcefile to targetfile.
- -i
- Waits for confirmation, if necessary, before an existing targetfile is overwritten
- -r
- Copies recursively (includes subdirectories)
- mv [option(s)] sourcefile targetfile
Copies sourcefile to targetfile then deletes the original sourcefile.
- -b
- Creates a backup copy of the sourcefile before moving
- -i
- Waits for confirmation, if necessary, before an existing targetfile is overwritten
- rm [option(s)] file(s)
- Removes the specified files from the file system. Directories are not removed by rm unless the option
-r is used.
- -r
- Deletes any existing subdirectories
- -i
- Waits for confirmation before deleting each file.
- ln [option(s)] sourcefile targetfile
Creates an internal link from the sourcefile to the targetfile, under a different name. Normally, such a link points directly to the sourcefile on one and the same file system. However, if ln is executed with the -s option, it creates a symbolic link that only points to the directory where the sourcefile is located, thus enabling linking across file systems.
- -s
- Creates a symbolic link
- cd [options(s)] [directory]
- Changes the current directory. cd without any parameters changes to the user's home directory.
- mkdir [option(s)] directoryname
Creates a new directory.- rmdir [option(s)] directoryname
Deletes the specified directory, provided it is already empty.- chown [option(s)] username.group file(s)
Transfers the ownership of a file to the user with the specified user name.
-R- Changes files and directories in all subdirectories.
- chgrp [option(s)] groupname file(s)
- Transfers the group ownership of a given file to the group with the specified group name. The file owner can only change group ownership if a member of both the existing and the new group.
- chmod [options] mode file(s)
- Changes the access permissions.
The mode parameter has three parts: group, access, and access type. group accepts the following characters:
For access, access is granted by the + symbol and denied by the - symbol.- u
- user
- g
- group
- o
- others
The access type is controlled by the following options:
r- read
- w
- write
- x
- eXecute — executing files or changing to the directory.
- s
- Set uid bit — the application or program is started as if it were started by the owner of the file.
- gzip [parameters] file(s)
This program compresses the contents of files, using complex mathematical algorithms. Files compressed in this way are given the extension .gz and need to be uncompressed before they can be used. To compress several files or even entire directories, use the tar command.
- -d
- decompresses the packed gzip files so they return to their original size and can be processed normally (like the command gunzip).
- tar options archive file(s)
- The tar puts one file or (usually) several files into an archive. Compression is optional.
tar is a quite complex command with a number of options available. The most frequently used options are:
The archive files created by tar end with .tar. If the tar archive was also compressed using gzip, the ending is .tgz or .tar.gz. If it was compressed using bzip2, .tar.bz2.- -f
- Writes the output to a file and not to the screen as is usually the case
- -c
- Creates a new tar archive
- -r
- Adds files to an existing archive
- -t
- Outputs the contents of an archive
- -u
- Adds files, but only if they are newer than the files already contained in the archive
- -x
- Unpacks files from an archive (extraction)
- -z
- Packs the resulting archive with gzip
- -j
- Compresses the resulting archive with bzip2
- -v
- Lists files processed
Application examples can be found in Section “Archives and Data Compression”. - locate pattern(s)
The locate command can find in which directory a specified file is located. If desired, use wild cards to specify file names. The program is very speedy, as it uses a database specifically created for the purpose (rather than searching through the entire file system). This very fact, however, also results in a major drawback: locate is unable to find any files created after the latest update of its database.
The database can be generated by root with updatedb.
- updatedb [options(s)]
- This command performs an update of the database used by locate. To include files in all existing directories, run the program as root. It also makes sense to place it in the background by appending an ampersand (&), so you can immediately continue working on the same command line (updatedb &).
- find [option(s)]
The find command allows you to search for a file in a given directory. The first argument specifies the directory in which to start the search. The option -name must be followed by a search string, which may also include wild cards. Unlike locate, which uses a database, find scans the actual directory.
Commands to Access File Contents
- cat [option(s)] file(s)
- The cat command displays the contents of a file, printing the entire contents to the screen without interruption.
- -n
- Numbers the output on the left margin
- less [option(s)] file(s)
This command can be used to browse the contents of the specified file. Scroll half a screen page up or down with PgUp and PgDn or a full screen page down with Space. Jump to the beginning or end of a file using Home and End. Press Q to exit the program.
- grep [option(s)] searchstring filenames
The grep command finds a specific searchstring in the specified file(s). If the search string is found, the command displays the line in which the searchstring was found along with the file name.
-i- Ignores case
- -l
- Only displays the names of the respective files, but not the text lines
- -n
- Additionally displays the numbers of the lines in which it found a hit
- -l
- Only lists the files in which searchstring does not occur
- diff [option(s)] file1 file2
- The diff command compares the contents of any two files. The output produced by the program lists all lines that do not match.
This is frequently used by programmers who need only send their program alterations and not the entire source code.
- -q
- Only reports whether the two given files differ