“Создайте сценарий оболочки” Ответ

Как создать сценарий Bash

#!/bin/bash

echo "Hello, world!"
Cooperative Cassowary

Создайте сценарий оболочки

Let us understand the steps in creating a Shell Script:
1. Create a file using a vi editor(or any other editor). Name script file with extension . sh.
2. Start the script with #! /bin/sh.
3. Write some code.
4. Save the script file as filename.sh.
5. For executing the script type bash filename.sh.
ilan melki

Как создать сценарий Bash

echo '#!bin/bash' > filename 
# works with and without extention, if you want extention do filename.sh
chmod +x filename
Jos

Ответы похожие на “Создайте сценарий оболочки”

Вопросы похожие на “Создайте сценарий оболочки”

Больше похожих ответов на “Создайте сценарий оболочки” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования