From 9a9927129acbf8808362da194c5fecb840416668 Mon Sep 17 00:00:00 2001 From: Lucky Borana <69751986+luckyborana@users.noreply.github.com> Date: Sat, 16 Apr 2022 22:59:09 +0530 Subject: [PATCH] Create Day1.md Day 1 Source of learning --- Day1.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Day1.md diff --git a/Day1.md b/Day1.md new file mode 100644 index 0000000..fb04ecb --- /dev/null +++ b/Day1.md @@ -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) +```