Linux2 - Quizz 5 -bash scripting

Linux2 - Quizz 5 -bash scripting

1st - 5th Grade

16 Qs

quiz-placeholder

Similar activities

Super heros!!!!

Super heros!!!!

KG - University

11 Qs

Diário de um banana - Quanto sabes?

Diário de um banana - Quanto sabes?

5th Grade

12 Qs

5-klass Tariyx

5-klass Tariyx

5th Grade

20 Qs

Nowe technologie i oprogramowanie

Nowe technologie i oprogramowanie

1st Grade

16 Qs

Pay Return Refund-Vocab

Pay Return Refund-Vocab

1st Grade

12 Qs

Data Types in Python

Data Types in Python

1st - 5th Grade

14 Qs

grade 2 computer

grade 2 computer

KG - 3rd Grade

14 Qs

Chromebook care

Chromebook care

3rd - 6th Grade

15 Qs

Linux2 - Quizz 5 -bash scripting

Linux2 - Quizz 5 -bash scripting

Assessment

Quiz

Computers

1st - 5th Grade

Medium

Created by

yuri van der List

Used 73+ times

FREE Resource

16 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How can I print the current system variables?

echo bash

echo $bash

print bash

printf bash

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How can I input data into a shell script in an neat way?

read -p "Enter your age"

read -p "Enter your age" age

read "Enter your age"

read "Enter your age" age

3.

MULTIPLE SELECT QUESTION

1 min • 1 pt

How can I check if an file is readable?

if [[ -r $file ]]; then

echo "File is not readable"

exit 0

fi

if [[ -d $file ]]; then

echo "File is not readable"

exit 0

fi

4.

MULTIPLE SELECT QUESTION

1 min • 1 pt

How to compare if 2 integers (a = 1, b = 2) are equal?

if [a -eq b]

if [a = b]

if [a isequal b]

if [ b equal a]

5.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How can I check if a directory exists ?

path = "/tmp/sound"

if [ -d "$path" ];

if [ -r "$path" ];

if [ -e "$path" ];

if [ -w "$path" ];

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Cron at 16:00 on day-of-month 1 in every month from January through December

00 16 1 1-12 /home/frank/BackUpAll.sh; /home/frank/ScpTarBackup.sh

00 04 1 1-12 /home/frank/BackUpAll.sh; /home/frank/ScpTarBackup.sh

16 00 1 1-12 /home/frank/BackUpAll.sh; /home/frank/ScpTarBackup.sh

16 16 1 1-12 /home/frank/BackUpAll.sh; /home/frank/ScpTarBackup.sh

7.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

How can I edit a cronjob?

crontab -l

crontab -e

crontab

crontab -m

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?