Steam telepítése
belépés
|
nyelv
简体中文 (egyszerűsített kínai)
繁體中文 (hagyományos kínai)
日本語 (japán)
한국어 (koreai)
ไทย (thai)
Български (bolgár)
Čeština (cseh)
Dansk (dán)
Deutsch (német)
English (angol)
Español - España (spanyolországi spanyol)
Español - Latinoamérica (latin-amerikai spanyol)
Ελληνικά (görög)
Français (francia)
Italiano (olasz)
Bahasa Indonesia (indonéz)
Nederlands (holland)
Norsk (norvég)
Polski (lengyel)
Português (portugáliai portugál)
Português - Brasil (brazíliai portugál)
Română (román)
Русский (orosz)
Suomi (finn)
Svenska (svéd)
Türkçe (török)
Tiếng Việt (vietnámi)
Українська (ukrán)
Fordítási probléma jelentése
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.