Комментарии в Bash
# This is a comment and will not be rendered on the screen#!/bin/bash
# Ask the user for their name
read -p "What is your name? " name
# Greet the user
echo "Hi there $name"
echo "Welcome to DevDojo!"Last updated
# This is a comment and will not be rendered on the screen#!/bin/bash
# Ask the user for their name
read -p "What is your name? " name
# Greet the user
echo "Hi there $name"
echo "Welcome to DevDojo!"Last updated