rilpoint_mw113

Linux:Shell Scripts

(Változatok közti eltérés)
21. sor: 21. sor:
#!/bin/bash
#!/bin/bash
echo -n "Your name: "
echo -n "Your name: "
-
read NEV
+
read NAME
-
echo "Nice to see you, $NEV"
+
echo "Nice to see you, $NAME"
</code>
</code>
</megoldas>
</megoldas>

A lap 2021. április 15., 07:12-kori változata

  • Create a text file of any content with mcedit! The file name should be test.txt!
  • Create a shell script that prints the following text: Hello world!
  • Create a program that assigns a value to variable named A and then shows its value.
  • Create a program that asks for the user's name from the keyboard and greets him in person!
  • Create a program that prints the English abbreviation of today's name! The name of the current day can be obtained by properly parameterizing the date command. (Use the man page of the date command!)
  • Create a program that asks the length of the side of a square and then displays its perimeter and area. The name of the program should be square!
  • Create a program that takes its parameters from a configuration file! Read the variables named NAME and AGE from the params.conf file and print their values.
Content of params.conf:
NAME="Kiss Lajos"
AGE=60
Skin by RIL Partner