Learning Objectives
Welcome to the Operating Systems course! Here’s a brief overview of what we’ll be covering in the first module:
Directories and Files:
Windows GUI:
List: Navigate through folders and view files in File Explorer.
Change: Rename, move, or copy files and directories using context menus and drag-and-drop.
Remove: Delete files and directories using the Recycle Bin or permanent deletion.
Make: Create new directories and files using File Explorer's menu options.
Windows CLI (Command Line Interface):
List: Use
dir
to list files and directories.Change: Use
rename
to rename files andmove
to relocate files or directories.Remove: Use
del
to delete files andrmdir
to remove directories.Make: Use
mkdir
to create new directories andecho > filename
to create files.
Linux Shell:
List: Use
ls
to list files and directories.Change: Use
mv
to rename or move files and directories.Remove: Use
rm
to delete files andrmdir
to remove directories.Make: Use
mkdir
to create new directories andtouch filename
to create files.
Searching for Files and Directories:
Windows GUI:
Search: Use the search bar in File Explorer to find specific files or directories.
Windows CLI:
Search: Use
dir /s /p
to search within directories orfindstr
for text searches within files.
Linux Shell:
Search: Use
find
to search for files and directories, andgrep
to search within files for specific text.
Text Manipulation:
Windows GUI:
Manipulate Text: Use text editors like Notepad or WordPad to edit and format text files.
Windows CLI:
Manipulate Text: Use
type
to display text file contents andcopy con
to create or modify text files.
Linux Shell:
Manipulate Text: Use commands like
cat
,nano
,vi
, orvim
to view, edit, and format text files.
By mastering these tasks, you’ll gain practical skills in handling files and directories and manipulating text across different operating systems. Enjoy the course and happy learning!
Last updated