Інсталювати Steam
увійти
|
мова
简体中文 (спрощена китайська)
繁體中文 (традиційна китайська)
日本語 (японська)
한국어 (корейська)
ไทย (тайська)
Български (болгарська)
Čeština (чеська)
Dansk (данська)
Deutsch (німецька)
English (англійська)
Español - España (іспанська — Іспанія)
Español - Latinoamérica (іспанська — Латинська Америка)
Ελληνικά (грецька)
Français (французька)
Italiano (італійська)
Bahasa Indonesia (індонезійська)
Magyar (угорська)
Nederlands (нідерландська)
Norsk (норвезька)
Polski (польська)
Português (португальська — Португалія)
Português - Brasil (португальська — Бразилія)
Română (румунська)
Русский (російська)
Suomi (фінська)
Svenska (шведська)
Türkçe (турецька)
Tiếng Việt (в’єтнамська)
Повідомити про проблему з перекладом
Enter the following script into vi, calling it scriptFinal.
#!/bin/bash
for file in $@; do
if [[ -r $file && -w $file && -x $file ]]
then count=$((count+1))
fi
done
echo Of the $# files entered, $count were r/w/x
Run the script to make sure it works. Modify the script in three ways:
1. output an error message if no parameters are supplied
2. rather than counting the number of files, find out total number of files that have
read permission for the group and execute permission for others
3. output a message ‘the directory is not permissible to list’ if the directory you
are trying to list does not have a read permission (5 pts Bonus)
Question 2: Total Point (20)
Define Process and Service. What is the difference between process and service? How
can you change the priority of a process? Mention the restrictions that a regular user has
while updating a process priority.