Programming

Bash Script Cheat Sheet

Hello Redtm Save as hello.sh , give it execute permission chmod +x hello.sh and run ./hello.sh Parameters $1 is the first parameters, second parameters should be $2 and so on. Variables Variables used to store data to use in future by referencing to the variable name! There are 4 type of variable we can use … Read more

Powershell Cheat Sheet

Hello World Files and Folders These are some example of working with files and folders Create folder and file Copy/Move/Delete Other CMDLET Variables Variables used to store data to use in future by referencing to the variable name! There are 4 type of variable we can use in bash. We can’t use Reserved word for … Read more

A quick cheat sheet on Python

This is not a complete python 3 tutorial. This just quick note to remember the python 3 syntax. Python Data Type: Name Type Description Integer int Numbers such as 100,200,1337 Strings str More than one characters such as “Cyber” Booleans bool Logical Value: True or False Floating Point float Numbers with decimal point such as: … Read more