Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Day1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Linux - Open Source
Opensource = Read code and Change code

---
# OS
* CLI
* GUI

# Commands
```
ls - (Listing all folder and files in directory)
```
```
cd Path/Path - ( Change Directory)
```
```
date - (It show current date of OS)
```
```
cal - (It show whole current month callendar)
* cal 10 2020 ---- ( cal (month) (year) )
* cal 2020 ----- ( It shows all year callender)
```
```
which (software_name) - ( It show the software path)
```
```
echo message - (its print the message on terminal)
```
```
espeak-ng Message - ( It will speak the message)
date | espeak-ng - (it speak the command result)
```