Os Lab Task 1 2212161

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Shaheed Zulfikar Ali Bhutto Institute of Science & Technology

COMPUTER SCIENCE DEPARTMENT

Total Marks: 04

Obtained Marks:

Lab task 01
Operating Systems
Lab

Submitted To: Mr. Muneeb Muzammil

Student Name: Muhammad Abdullah Amjad

Reg Number: 2212161

OS lab task 1 BS(CS)-5B SZABIST-ISB


Shaheed Zulfikar Ali Bhutto Institute of Science & Technology

COMPUTER SCIENCE DEPARTMENT

Create a directory named project:

mkdir project

Navigate into the project directory:

cd project

Create two subdirectories, docs and scripts:

mkdir docs scripts

Navigate to the docs directory:

cd docs

Create a text file named readme.txt:

echo "This is the README file for the project." > readme.txt

Display the content of readme.txt to verify the text was written:

cat readme.txt

Move the readme.txt file from docs to scripts

mv readme.txt ../scripts/

Navigate to the scripts directory:

cd ../scripts

Check if readme.txt was successfully moved:

ls

OS lab task 1 BS(CS)-5B SZABIST-ISB

You might also like