Термінал - це програма, основним призначенням якої є читання команд
і запуск інших програм.
У цьому уроці використовується Bash. Це термінал за замовчуванням у
багатьох реалізаціях Unix.
Програми можна запускати у Bash шляхом введення команд у вікні
командного рядка.
Основними перевагами терміналу є високе співвідношення кількості дій
до кількості натискань клавіш, підтримка автоматизації повторюваних
завдань, а також можливість доступу до віддалених машин.
Дуже важлива навичка при використанні оболонки - це вміння доречно
використовувати текстові команди.
mv [old] [new] moves (renames) a file or
directory.
rm [path] removes (deletes) a file.
* matches zero or more characters in a filename, so
*.txt matches all files ending in .txt.
? matches any single character in a filename, so
?.txt matches a.txt but not
any.txt.
Use of the Control key may be described in many ways, including
Ctrl-X, Control-X, and ^X.
The shell does not have a trash bin: once something is deleted, it’s
really gone.
Most files’ names are something.extension. The
extension isn’t required, and doesn’t guarantee anything, but is
normally used to indicate the type of data in the file.
Depending on the type of work you do, you may need a more powerful
text editor than Nano.
find finds files with specific properties that match
patterns.
grep selects lines in files that match patterns.
--help is an option supported by many bash commands,
and programs that can be run from within Bash, to display more
information on how to use these commands or programs.
man [command] displays the manual page for a given
command.