instructions.txt (623B)
1Instructions:
23
# add contents
4echo Hello, World! >> my_file.txt
56
type my_file.txt # display the contents
78
# make a new file
9echo. > new.txt
1011
# to read contents
12type file.txt
1314
# notepad commands
15notepad file.txt # opens notepad
1617
# how to write:
18two write, type ! followed by text. To type next line character, type '~'
1920
examples:
21!hi`hi writes "hi\hi"
2223
# how to type shortcuts:
24start with !! then type keys seprated by ~ for example
2526
!!ctrl~s # save
27!!alt~f4 # close
2829
Note: dont leave any space
3031
keycodes:
321. windows key: win
332. control: ctrl
343. shift: shift
354. f4: f4
3637
# gcc command to compile code
38gcc -o output input.cd