Remote-Code-Command-execution

A naive ssh clone, with screen sharing
git clone https://github.com/abdulrahim2002/Remote-Code-Command-execution

Log | Files | Refs | README

instructions.txt (623B)


      1 Instructions:
      2 
      3 # add contents
      4 echo Hello, World! >> my_file.txt
      5 
      6 type my_file.txt # display the contents
      7 
      8 # make a new file
      9 echo. > new.txt
     10 
     11 # to read contents
     12 type file.txt 
     13 
     14 # notepad commands
     15 notepad file.txt # opens notepad
     16 
     17 # how to write:
     18 two write, type ! followed by text. To type next line character, type '~'
     19 
     20 examples:
     21 !hi`hi writes "hi\hi"
     22 
     23 # how to type shortcuts: 
     24 start with !! then type keys seprated by ~ for example
     25 
     26 !!ctrl~s # save
     27 !!alt~f4 # close
     28 
     29 Note: dont leave any space
     30 
     31 keycodes:
     32 1. windows key: win
     33 2. control: ctrl
     34 3. shift: shift
     35 4. f4: f4
     36 
     37 # gcc command to compile code
     38 gcc -o output input.cd