For this may be my only review the basic linux commands for file management in linux ubuntu.note the following table.
Command | function | optional |
---|---|---|
cd | Change directory | cd path_destination |
cp | Copy file or directory | cp path/file_name path_destination |
mv | Move file or directory | mv path/file_name path_destination |
mv | Rename file or directory | mv path/file_name path_destination/new_file_name |
rm | Remove file | rm path/file_name |
rm -R | Rename directory | rm -R path/file_name |
ls | show all file and directory | ls [path] |
mkdir | make directory | mkdir directory_name |
unzip | extract file compressed ZIP | unzip path/file_name.zip |
tar -xvf | extract file compressed TAR | unzip path/file_name.tar.gz |
cat | show the content of file | cat file_name |
post a comment if anyone asked. thank :)
need to know!
In computing, a command is a directive to a computer program acting as an interpreter of some kind, in order to perform a specific task. Most commonly a command is a directive to some kind of command line interface, such as a shell.
Specifically, the term command is used in imperative computer languages. These languages are called this, because statements in these languages are usually written in a manner similar to the imperative mood used in many natural languages. If one views a statement in an imperative language as being like a sentence in a natural language, then a command is generally like a verb in such a language.
Many programs allow specially formatted arguments, known as flags, which modify the default behaviour of the command, while further arguments describe what the command acts on. Comparing to a natural language: the flags are adverbs, whilst the other arguments are objects.
In computing, a command is a directive to a computer program acting as an interpreter of some kind, in order to perform a specific task. Most commonly a command is a directive to some kind of command line interface, such as a shell.
Specifically, the term command is used in imperative computer languages. These languages are called this, because statements in these languages are usually written in a manner similar to the imperative mood used in many natural languages. If one views a statement in an imperative language as being like a sentence in a natural language, then a command is generally like a verb in such a language.
Many programs allow specially formatted arguments, known as flags, which modify the default behaviour of the command, while further arguments describe what the command acts on. Comparing to a natural language: the flags are adverbs, whilst the other arguments are objects.
0 comments:
Post a Comment