├── README.md
└── penguis work
├── 1.handson.txt
├── 2.han.txt
├── code.txt
├── creating a user account.docx
└── message.txt
/README.md:
--------------------------------------------------------------------------------
1 | # AmazonWebServices
2 |
--------------------------------------------------------------------------------
/penguis work/1.handson.txt:
--------------------------------------------------------------------------------
1 | /home/rofu/.hushloginfile.
2 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ pwd
3 | /mnt/c/Users/emret/Desktop/Vs_Code_Storage
4 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd ..
5 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop$ cd Vs_Code_Storage/
6 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktrofu@DESKTOP-rofu@rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ mkdir clarusway
7 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd clarusway/
8 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ touch test.txt
9 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ echo test.txt
10 | test.txt
11 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ echo "hello" > test.txt
12 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cat test.txt
13 | hello
14 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ echo "my name is robert" >> test.txt
15 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cat test.txt
16 | hello
17 | my name is robert
18 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ echo "hello, this is second text file" > test1.txt
19 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cat test1.txt
20 | hello, this is second text file
21 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cat test.txt test1.txt
22 | hello
23 | my name is robert
24 | hello, this is second text file
25 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ touch multiple{1..10}.txt
26 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -l
27 | total 0
28 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple1.txt
29 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
30 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple2.txt
31 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple3.txt
32 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
33 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
34 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
35 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
36 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
37 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
38 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
39 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
40 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cd ..
41 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ mkdir europe
42 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd europe
43 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ touch lab.txt lab1.txt
44 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ echo "This is the second directory" > lab.txt
45 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ mv lab
46 | lab.txt lab1.txt
47 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ mv lab
48 | lab.txt lab1.txt
49 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp lab.txt newlab.txt
50 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls -l
51 | total 0
52 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:52 lab.txt
53 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:51 lab1.txt
54 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:53 newlab.txt
55 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls *.txt
56 | lab.txt lab1.txt newlab.txt
57 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls n*.txt
58 | newlab.txt
59 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp newlab.txt ../clarusway/
60 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp m*{6..10}.txt ../clarusway/
61 | cp: cannot stat 'm*6.txt': No such file or directory
62 | cp: cannot stat 'm*7.txt': No such file or directory
63 | cp: cannot stat 'm*8.txt': No such file or directory
64 | cp: cannot stat 'm*9.txt': No such file or directory
65 | cp: cannot stat 'm*10.txt': No such file or directory
66 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp m*{6..10}.txt ../clarusway/ ../europe/
67 | cp: cannot stat 'm*6.txt': No such file or directory
68 | cp: cannot stat 'm*7.txt': No such file or directory
69 | cp: cannot stat 'm*8.txt': No such file or directory
70 | cp: cannot stat 'm*9.txt': No such file or directory
71 | cp: cannot stat 'm*10.txt': No such file or directory
72 | cp: -r not specified; omitting directory '../clarusway/'
73 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp ../clarusway/m*{6..10}.txt ../europe/
74 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cd ..
75 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd clarusway/
76 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ mv m*{1..3}.txt ../europe/
77 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -l
78 | total 0
79 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
80 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
81 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
82 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
83 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
84 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
85 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
86 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:56 newlab.txt
87 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
88 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
89 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ mv newlab.txt linuxlab.txt
90 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -l
91 | total 0
92 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:56 linuxlab.txt
93 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
94 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
95 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
96 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
97 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
98 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
99 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
100 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
101 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
102 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod 777 linuxlab.txt
103 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod 776 linuxlab.txt
104 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -al
105 | total 0
106 | drwxrwxrwx 1 rofu rofu 512 Jul 18 20:04 .
107 | drwxrwxrwx 1 rofu rofu 512 Jul 18 19:51 ..
108 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:56 linuxlab.txt
109 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
110 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
111 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
112 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
113 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
114 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
115 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
116 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
117 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
118 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod a=rw linuxlab.txt
119 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod ugo=rwx linuxlab.txt
120 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ mkdir america
121 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ rm america/
122 | rm: cannot remove 'america/': Is a directory
123 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ rmdir america/
124 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cd
125 | rofu@DESKTOP-LQ31GIM:~$ cd /mnt/c/Users/emret/Desktop/Vs_Code_Storage/
126 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ rm -rf clarusway/
127 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd europe/
128 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ touch .linuxworkshop.txt
129 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls
130 | lab.txt lab1.txt multiple1.txt multiple10.txt multiple2.txt multiple3.txt multiple6.txt multiple7.txt multiple8.txt multiple9.txt newlab.txt
131 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ mv .linuxworkshop.txt linuxworkshop.txt
--------------------------------------------------------------------------------
/penguis work/2.han.txt:
--------------------------------------------------------------------------------
1 | hello, this is second text file
2 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cat test.txt test1.txt
3 | hello
4 | my name is robert
5 | hello, this is second text file
6 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ touch multiple{1..10}.txt
7 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -l
8 | total 0
9 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple1.txt
10 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
11 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple2.txt
12 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple3.txt
13 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
14 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
15 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
16 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
17 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
18 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
19 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
20 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
21 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cd ..
22 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ mkdir europe
23 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd europe
24 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ touch lab.txt lab1.txt
25 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ echo "This is the second directory" > lab.txt
26 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ mv lab
27 | lab.txt lab1.txt
28 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ mv lab
29 | lab.txt lab1.txt
30 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp lab.txt newlab.txt
31 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls -l
32 | total 0
33 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:52 lab.txt
34 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:51 lab1.txt
35 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:53 newlab.txt
36 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls *.txt
37 | lab.txt lab1.txt newlab.txt
38 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls n*.txt
39 | newlab.txt
40 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp newlab.txt ../clarusway/
41 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp m*{6..10}.txt ../clarusway/
42 | cp: cannot stat 'm*6.txt': No such file or directory
43 | cp: cannot stat 'm*7.txt': No such file or directory
44 | cp: cannot stat 'm*8.txt': No such file or directory
45 | cp: cannot stat 'm*9.txt': No such file or directory
46 | cp: cannot stat 'm*10.txt': No such file or directory
47 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp m*{6..10}.txt ../clarusway/ ../europe/
48 | cp: cannot stat 'm*6.txt': No such file or directory
49 | cp: cannot stat 'm*7.txt': No such file or directory
50 | cp: cannot stat 'm*8.txt': No such file or directory
51 | cp: cannot stat 'm*9.txt': No such file or directory
52 | cp: cannot stat 'm*10.txt': No such file or directory
53 | cp: -r not specified; omitting directory '../clarusway/'
54 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cp ../clarusway/m*{6..10}.txt ../europe/
55 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ cd ..
56 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd clarusway/
57 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ mv m*{1..3}.txt ../europe/
58 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -l
59 | total 0
60 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
61 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
62 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
63 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
64 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
65 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
66 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
67 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:56 newlab.txt
68 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
69 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
70 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ mv newlab.txt linuxlab.txt
71 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -l
72 | total 0
73 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:56 linuxlab.txt
74 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
75 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
76 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
77 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
78 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
79 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
80 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
81 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
82 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
83 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod 777 linuxlab.txt
84 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod 776 linuxlab.txt
85 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ ls -al
86 | total 0
87 | drwxrwxrwx 1 rofu rofu 512 Jul 18 20:04 .
88 | drwxrwxrwx 1 rofu rofu 512 Jul 18 19:51 ..
89 | -rwxrwxrwx 1 rofu rofu 29 Jul 18 19:56 linuxlab.txt
90 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple10.txt
91 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple4.txt
92 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple5.txt
93 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple6.txt
94 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple7.txt
95 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple8.txt
96 | -rwxrwxrwx 1 rofu rofu 0 Jul 18 19:50 multiple9.txt
97 | -rwxrwxrwx 1 rofu rofu 24 Jul 18 19:47 test.txt
98 | -rwxrwxrwx 1 rofu rofu 32 Jul 18 19:48 test1.txt
99 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod a=rw linuxlab.txt
100 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ chmod ugo=rwx linuxlab.txt
101 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ mkdir america
102 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ rm america/
103 | rm: cannot remove 'america/': Is a directory
104 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ rmdir america/
105 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/clarusway$ cd
106 | rofu@DESKTOP-LQ31GIM:~$ cd /mnt/c/Users/emret/Desktop/Vs_Code_Storage/
107 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ rm -rf clarusway/
108 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd europe/
109 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ touch .linuxworkshop.txt
110 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ ls
111 | lab.txt lab1.txt multiple1.txt multiple10.txt multiple2.txt multiple3.txt multiple6.txt multiple7.txt multiple8.txt multiple9.txt newlab.txt
112 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$ mv .linuxworkshop.txt linuxworkshop.txt
113 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/europe$
114 | * History restored
115 |
116 | Welcome to Ubuntu 22.04 LTS (GNU/Linux 4.4.0-19041-Microsoft x86_64)
117 |
118 | * Documentation: https://help.ubuntu.com
119 | * Management: https://landscape.canonical.com
120 | * Support: https://ubuntu.com/advantage
121 | /etc/update-motd.d/50-landscape-sysinfo: 17: cannot create /var/lib/landscape/landscape-sysinfo.cache: Permission denied
122 |
123 | 0 updates can be applied immediately.
124 |
125 |
126 | The list of available updates is more than a week old.
127 | To check for new updates run: sudo apt update
128 |
129 |
130 | This message is shown once a day. To disable it please create the
131 | /home/rofu/.hushlogin file.
132 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$
133 | * History restored
134 |
135 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ pwd
136 | /mnt/c/Users/emret/Desktop/Vs_Code_Storage
137 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ mkdir ABC_C
138 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage$ cd ABC_C/
139 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C$ ls -al
140 | total 0
141 | drwxrwxrwx 1 rofu rofu 512 Jul 20 20:08 .
142 | drwxrwxrwx 1 rofu rofu 512 Jul 20 20:08 ..
143 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C$ mkdir Futsal Basketball Swimming
144 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C$ cd Futsal/
145 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal$ ls -al
146 | total 0
147 | drwxrwxrwx 1 rofu rofu 512 Jul 20 20:09 .
148 | drwxrwxrwx 1 rofu rofu 512 Jul 20 20:09 ..
149 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal$ mkdir Futsal_Women Futsal_Men
150 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal$ ls -l
151 | total 0
152 | drwxrwxrwx 1 rofu rofu 512 Jul 20 20:10 Futsal_Men
153 | drwxrwxrwx 1 rofu rofu 512 Jul 20 20:10 Futsal_Women
154 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal$ cd ..
155 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C$ cd Basketball/
156 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball$ mkdir Basketball_Women Basketball_Men
157 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball$ cd ../Swimming/
158 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming$ mkdir Swimming_Women Swimming_Men
159 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming$ cd Swimming_Women/
160 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women$ mkdir Freestyle Butterfly
161 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women$ cd ../Swimming_Men/
162 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men$ mkdir Freestyle Butterfly
163 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men$ cd ../../Futsal/Futsal_Women/
164 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women$ echo "Futsal_Goalkeeper" > Emma.txt | echo "Futsal_Defender" > Olivia.txt | echo "Futsal_Winger" > Isabella.txt | echo "Futsal_Winger" > Mia.txt | echo "Futsal_Pivot" > Sophia.txt
165 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women$ ls -l
166 | total 0
167 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:26 Emma.txt
168 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:26 Isabella.txt
169 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:26 Mia.txt
170 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:26 Olivia.txt
171 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:26 Sophia.txt
172 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women$ chmod ug=rw Isabella.txt
173 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women$ ls -l
174 | total 0
175 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:26 Emma.txt
176 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:26 Isabella.txt
177 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:26 Mia.txt
178 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:26 Olivia.txt
179 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:26 Sophia.txt
180 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women$ chmod a-rwx Isabella.txt
181 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women$ ls -l
182 | total 0
183 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:26 Emma.txt
184 | -r-xr-xr-x 1 rofu rofu 14 Jul 20 20:26 Isabella.txt
185 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:26 Mia.txt
186 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:26 Olivia.txt
187 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:26 Sophia.txt
188 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women$ cd ../Futsal_Men/
189 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ echo "Futsal_Goalkeeper" > Robert.txt | echo "Futsal_Defender" > Martin.txt | echo "Futsal_Winger" > James.txt | echo "Futsal_Winger" > Liam.txt | echo "Futsal_Pivot" > Lucas.txt
190 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ chmod 600 Martin.txt
191 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ ls -l
192 | total 0
193 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 James.txt
194 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 Liam.txt
195 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:34 Lucas.txt
196 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:34 Martin.txt
197 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:34 Robert.txt
198 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ chmod 600 Martin.txt
199 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ ls -l
200 | total 0
201 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 James.txt
202 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 Liam.txt
203 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:34 Lucas.txt
204 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:34 Martin.txt
205 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:34 Robert.txt
206 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ chmod u=rw,g=-,u=- Martin.txt
207 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ ls -l
208 | total 0
209 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 James.txt
210 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 Liam.txt
211 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:34 Lucas.txt
212 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:34 Martin.txt
213 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:34 Robert.txt
214 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ echo "Basketball_Point-Guard" > Ava.txt | echo "Basketball_Shooting-Guard" > Eveltn.txt | echo "Basketball_Center" > Hazel.txt | echo "Basketball_Small-Forward" > Bella.txt
215 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ ls l
216 | ls: cannot access 'l': No such file or directory
217 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ rm -rf Ava.txt Eveltn.txt Hazel.txt Bella.txt
218 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ cd ../../Basketball/Basketball_Women/
219 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ echo "Basketball_Point-Guard" > Ava.txt | echo "Basketball_Shooting-Guard" > Eveltn.txt | echo "Basketball_Center" > Hazel.txt | echo "Basketball_Small-Forward" > Bella.txt
220 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ chmod
221 | chmod: missing operand
222 | Try 'chmod --help' for more information.
223 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ chmod --help
224 | Usage: chmod [OPTION]... MODE[,MODE]... FILE...
225 | or: chmod [OPTION]... OCTAL-MODE FILE...
226 | or: chmod [OPTION]... --reference=RFILE FILE...
227 | Change the mode of each FILE to MODE.
228 | With --reference, change the mode of each FILE to that of RFILE.
229 |
230 | -c, --changes like verbose but report only when a change is made
231 | -f, --silent, --quiet suppress most error messages
232 | -v, --verbose output a diagnostic for every file processed
233 | --no-preserve-root do not treat '/' specially (the default)
234 | --preserve-root fail to operate recursively on '/'
235 | --reference=RFILE use RFILE's mode instead of MODE values
236 | -R, --recursive change files and directories recursively
237 | --help display this help and exit
238 | --version output version information and exit
239 |
240 | Each MODE is of the form '[ugoa]*([-+=]([rwxXst]*|[ugo]))+|[-+=][0-7]+'.
241 |
242 | GNU coreutils online help:
243 | Report any translation bugs to
244 | Full documentation
245 | or available locally via: info '(coreutils) chmod invocation'
246 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ cd ../../Futsal/Futsal_Men/
247 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ chmot 1 Martin.txt
248 | ls -l
249 | Command 'chmot' not found, did you mean:
250 | command 'chmod' from deb coreutils (8.32-4.1ubuntu1)
251 | Try: sudo apt install
252 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ ls -l
253 | total 0
254 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 James.txt
255 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 Liam.txt
256 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:34 Lucas.txt
257 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:34 Martin.txt
258 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:34 Robert.txt
259 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ chmod ugo=r Martin.txt
260 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ ls -l
261 | total 0
262 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 James.txt
263 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 Liam.txt
264 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:34 Lucas.txt
265 | -r-xr-xr-x 1 rofu rofu 16 Jul 20 20:34 Martin.txt
266 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:34 Robert.txt
267 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ cd ../../Basketball/Basketball_Women/
268 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ echo "Basketbal_Power-Forward" >> Bella.txt
269 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ cp ../../Futsal/Futsal_Women/Olivia.txt .
270 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ ls -l
271 | total 0
272 | -rwxrwxrwx 1 rofu rofu 23 Jul 20 20:39 Ava.txt
273 | -rwxrwxrwx 1 rofu rofu 49 Jul 20 20:43 Bella.txt
274 | -rwxrwxrwx 1 rofu rofu 26 Jul 20 20:39 Eveltn.txt
275 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:39 Hazel.txt
276 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:44 Olivia.txt
277 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Women$ cd ../
278 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball$ cd ../
279 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C$ cd Basketball/Basketball_Men/
280 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ echo "Basketball_Point-Guard" > Logan.txt | echo "Basketball_Shooting-Guard" > Jack.txt | echo "Basketball_Center" > Joseph.txt | echo "Basketball_Power-Forward" > Matthew.txt | echo "Basketball_Small-Forward" > David.txt
281 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ ls -l
282 | total 0
283 | -rwxrwxrwx 1 rofu rofu 25 Jul 20 20:46 David.txt
284 | -rwxrwxrwx 1 rofu rofu 26 Jul 20 20:46 Jack.txt
285 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:46 Joseph.txt
286 | -rwxrwxrwx 1 rofu rofu 23 Jul 20 20:46 Logan.txt
287 | -rwxrwxrwx 1 rofu rofu 25 Jul 20 20:46 Matthew.txt
288 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ chmod a-rwx David.txt
289 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ ls -l
290 | total 0
291 | -r-xr-xr-x 1 rofu rofu 25 Jul 20 20:46 David.txt
292 | -rwxrwxrwx 1 rofu rofu 26 Jul 20 20:46 Jack.txt
293 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:46 Joseph.txt
294 | -rwxrwxrwx 1 rofu rofu 23 Jul 20 20:46 Logan.txt
295 | -rwxrwxrwx 1 rofu rofu 25 Jul 20 20:46 Matthew.txt
296 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ chmod a=-rwx David.txt
297 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ ls -l
298 | total 0
299 | -r-xr-xr-x 1 rofu rofu 25 Jul 20 20:46 David.txt
300 | -rwxrwxrwx 1 rofu rofu 26 Jul 20 20:46 Jack.txt
301 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:46 Joseph.txt
302 | -rwxrwxrwx 1 rofu rofu 23 Jul 20 20:46 Logan.txt
303 | -rwxrwxrwx 1 rofu rofu 25 Jul 20 20:46 Matthew.txt
304 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ chmod 444 David.txt
305 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ ls -l
306 | total 0
307 | -r-xr-xr-x 1 rofu rofu 25 Jul 20 20:46 David.txt
308 | -rwxrwxrwx 1 rofu rofu 26 Jul 20 20:46 Jack.txt
309 | -rwxrwxrwx 1 rofu rofu 18 Jul 20 20:46 Joseph.txt
310 | -rwxrwxrwx 1 rofu rofu 23 Jul 20 20:46 Logan.txt
311 | -rwxrwxrwx 1 rofu rofu 25 Jul 20 20:46 Matthew.txt
312 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men$ cd ../../Swimming/Swimming_Women/Freestyle/
313 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Freestyle$ echo "Swimming_freestyle" > Scarlett.txt
314 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Freestyle$ echo "Swimming Frestyle " >> /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women/Mia.txt
315 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Freestyle$ cp /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women/Mia.txt .
316 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Freestyle$ ls -l
317 | total 0
318 | -rwxrwxrwx 1 rofu rofu 33 Jul 20 20:58 Mia.txt
319 | -rwxrwxrwx 1 rofu rofu 19 Jul 20 20:51 Scarlett.txt
320 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Freestyle$ cd ../Butterfly/
321 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Butterfly$ echo "Swimming_Butterfly" Ellie.txt
322 | Swimming_Butterfly Ellie.txt
323 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Butterfly$ echo "Swimming_Buterfly" /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women/Emma.txt
324 | Swimming_Buterfly /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women/Emma.txt
325 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Butterfly$ ls -l
326 | total 0
327 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Butterfly$ echo "Swimming_Butterfly" /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women/Emma.txt .
328 | Swimming_Butterfly /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women/Emma.txt .
329 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Butterfly$ echo "Swimming_b" >> /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Women/Emma.txt .
330 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Butterfly$ ls -l
331 | total 0
332 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Women/Butterfly$ cd ../../Swimming_Men/Freestyle/
333 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Freestyle$ echo "Swimming Freestyle" > Carter.txt
334 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Freestyle$ echo "Swimming_freestyle" >> /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men/Robert.txt
335 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Freestyle$ echo "Swimming_freestyle" >> /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men/Joseph.txt
336 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Freestyle$ cp /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men/Robert.txt .
337 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Freestyle$ cp /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Basketball/Basketball_Men/Joseph.txt .
338 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Freestyle$ ls -l
339 | total 0
340 | -rwxrwxrwx 1 rofu rofu 19 Jul 20 21:05 Carter.txt
341 | -rwxrwxrwx 1 rofu rofu 37 Jul 20 21:12 Joseph.txt
342 | -rwxrwxrwx 1 rofu rofu 37 Jul 20 21:11 Robert.txt
343 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Freestyle$ cd ../../Swimming_Men/Butterfly/
344 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ echo "swimming_butterfly" > Isaac.txt
345 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ chmod a=-rw,g=rw Isaac.txt
346 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ ls -l
347 | total 0
348 | -rwxrwxrwx 1 rofu rofu 19 Jul 20 21:15 Isaac.txt
349 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ chmod a=r,g=r,u=r Isaac.txt
350 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ ls -l
351 | total 0
352 | -r-xr-xr-x 1 rofu rofu 19 Jul 20 21:15 Isaac.txt
353 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ echo "swimming_butterfly" >> /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men/Martin.txt
354 | -bash: /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men/Martin.txt: Permission denied
355 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ echo "swimming_butterfly" >> /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men/Martin.txt .
356 | -bash: /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men/Martin.txt: Permission denied
357 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ cd ../../../Futsal/Futsal_Men/
358 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ chmod 777 Martin.txt
359 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ ls -l
360 | total 0
361 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 James.txt
362 | -rwxrwxrwx 1 rofu rofu 14 Jul 20 20:34 Liam.txt
363 | -rwxrwxrwx 1 rofu rofu 13 Jul 20 20:34 Lucas.txt
364 | -rwxrwxrwx 1 rofu rofu 16 Jul 20 20:34 Martin.txt
365 | -rwxrwxrwx 1 rofu rofu 37 Jul 20 21:09 Robert.txt
366 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men$ cd ../../Swimming/Swimming_Men/Butterfly/
367 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ echo "swimming_butterfly" >> /mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Futsal/Futsal_Men/Martin.txt .
368 | rofu@DESKTOP-LQ31GIM:/mnt/c/Users/emret/Desktop/Vs_Code_Storage/ABC_C/Swimming/Swimming_Men/Butterfly$ ls- l
--------------------------------------------------------------------------------
/penguis work/code.txt:
--------------------------------------------------------------------------------
1 |
2 | echo "Futsal_Goalkeeper" > Emma.txt | echo "Futsal_Defender" > Olivia.txt | echo "Futsal_Winger" > Isabella.txt | echo "Futsal_Winger" > Mia.txt | echo "Futsal_Pivot" > Sophia.txt
3 |
4 | echo "Futsal_Goalkeeper" > Robert.txt | echo "Futsal_Defender" > Martin.txt | echo "Futsal_Winger" > James.txt | echo "Futsal_Winger" > Liam.txt | echo "Futsal_Pivot" > Lucas.txt
5 |
6 | echo "Basketball_Point-Guard" > Ava.txt | echo "Basketball_Shooting-Guard" > Eveltn.txt | echo "Basketball_Center" > Hazel.txt | echo "Basketball_Small-Forward" > Bella.txt
7 |
8 | echo "Basketball_Point-Guard" > Logan.txt | echo "Basketball_Shooting-Guard" > Jack.txt | echo "Basketball_Center" > Joseph.txt | echo "Basketball_Power-Forward" > Matthew.txt | echo "Basketball_Small-Forward" > David.txt
--------------------------------------------------------------------------------
/penguis work/creating a user account.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/asumankamberoglu/AmazonWebServices/90b12b3a5f5f33d814bda2fa9892e833cf114029/penguis work/creating a user account.docx
--------------------------------------------------------------------------------
/penguis work/message.txt:
--------------------------------------------------------------------------------
1 | pwd
2 | 849 mkdir ABC_College
3 | 850 cd ABC_College/
4 | 851 ls -al
5 | 852 mkdir Futsal Basketball Swimming
6 | 853 cd Futsal/
7 | 854 ls -al
8 | 855 ls -a
9 | 856 mkdir Futsal_Women Futsal_Men
10 | 857 ls
11 | 858 cd ../Basketball/
12 | 859 ls -al
13 | 860 mkdir Basketball_Women Basketball_Men
14 | 861 ls
15 | 862 cd ../Swimming/
16 | 863 ls -al
17 | 864 mkdir Swimming_Women Swimming_Men
18 | 865 ls
19 | 866 pwd
20 | 867 cd ../Swimming_Women/
21 | 868 cd ../Swimming_Women
22 | 869 cd Swimming_Women/
23 | 870 mkdir Freestyle Butterfly
24 | 871 cd Swimming_Men/
25 | 872 cd ../ Swimming_Men/
26 | 873 cd ../Swimming_Men/
27 | 874 mkdir Freestyle Butterfly
28 | 875 cd ../../Futsal/Futsal_Women/
29 | 876 ls
30 | 877 touch Emma Olivia Isabella Mia Sophia
31 | 878 echo "Futsal_Goalkeeper" > Emma
32 | 879 echo "Futsal_Defender" > Olivia
33 | 880 echo "Futsal_Winger" > Isabella
34 | 881 echo "Futsal_Winger" > Mia
35 | 882 echo "Futsal_Pivot" > Sophia
36 | 883 chmod ug=rw Isabella
37 | 884 cd ../Futsal_Men/
38 | 885 ls
39 | 886 touch Robert Martin James Liam Lucas
40 | 887 echo "Futsal_Goalkeeper" > Robert
41 | 888 echo "Futsal_Defender" > Martin
42 | 889 echo "Futsal_Winger" > James
43 | 890 echo "Futsal_Winger" > Liam
44 | 891 echo "Futsal_Pivot" > Lucas
45 | 892 chmod 600 Martin
46 | 893 chmod a-rwx Martin
47 | 894 ls
48 | 895 ls -al
49 | 896 chmod u=rw Martin
50 | 897 ls -al
51 | 898 cd ../Futsal/Basketball/Basketball_Women/
52 | 899 cd ../../Basketball/Basketball_Women/
53 | 900 ls
54 | 901 touch Ava Evelyn Hazel Bella
55 | 902 echo "Basketball_Point_Guard" > Ava
56 | 903 echo "Basketball_Shooting_Guard" > Evelyn
57 | 904 echo "Basketball_Center" > Hazel
58 | 905 echo "Basketball_Small_Forward" > Bella
59 | 906 echo "Basketball_Power_Forward" >>/home/
60 | 907 echo "Basketball_Power_Forward" >> /home/\$USER/ABC_College/Futsal/Futsal_Women/Olivia
61 | 908 echo "Basketball_Pover_Forward" >> /home/$USER/ABC_College/Futsal/Futsal_Women/ Olivia
62 | 909 echo "Basketball_Power_Forward" >> /home/ashley/ABC_College/Futsal/Futsal_Women/ Olivia
63 | 910 ls
64 | 911 echo "Basketball_Power-Forward" >> /home/ashley/ABC_College/Futsal/Futsal_Women/Olivia
65 | 912 cp ../../Futsal/Futsal_Women/Olivia
66 | 913 cp../../Futsal/Futsal_Women/Olivia
67 | 914 cp ../../Futsal/Futsal_Women/Olivia
68 | 915 cp ../../Futsal/Futsal_Women/Olivia .
69 | 916 ls -al
70 | 917 cd ~/ABC_College/Basketball/Basketball_Men
71 | 918 touch Logan Jack Joseph Matthew David
72 | 919 echo "Basketball_Point Guard" > Logan
73 | 920 echo "Basketbal_Shooting-Guard" > Jack
74 | 921 echo "Basketball_Center" > Joseph
75 | 922 echo "Basketball_Power-Forvet" > Matthew
76 | 923 echo "Basketball_Small-Forward" > David
77 | 924 ls -al
78 | 925 chmod a=r David
79 | 926 ls -al
80 | 927 chmod a-wr David
81 | 928 ls -al
82 | 929 chmod a-wx David
83 | 930 ls -al
84 | 931 chmod 444 David
85 | 932 ls -al
86 | 933 cd ../../Swimming/Swimming_Women/Freestyle/
87 | 934 echo "Swimming_Freesytle" > Scarlett
88 | 935 echo "Swimming_Freesytle" >> /home/ashley/ABC_College/Futsal/Futsal_Women/Mia
89 | 936 cp /home/ashley/ABC_College/Futsal/Futsal_Women/Mia
90 | 937 cp /home/ashley/ABC_College/Futsal/Futsal_Women/Mia .
91 | 938 cd ../Butterfly/
92 | 939 touch Ellie
93 | 940 echo "Swimming_Butterfly" > Ellie
94 | 941 echo "Swimming_Butterfly" >> /home/ashley/ABC_College/Futsal/Futsal_Women/Emma
95 | 942 cp /home/ashley/ABC_College/Futsal/Futsal_Women/Emma .
96 | 943 cd ../../Swimming_Men/Freestyle/
97 | 944 echo "Swimming_Freesytle" > Carter
98 | 945 tree
99 | 946 echo "Swimming_Freestyle" >> /home/ashley/ABC_College/Futsal/Futsal_Men/Robert
100 | 947 echo "Swimming_Freestyle" >> /home/ashley/ABC_College/Basketball/Basketball_Men/Joseph
101 | 948 cp /home/ashley/ABC_College/Futsal/Futsal_Men/Robert .
102 | 949 cp /home/ashley/ABC_College/Basketball/Basketball_Men/Joseph .
103 | 950 cd ../Swimming_Men/Butterfly
104 | 951 cd ../../Swimming_Men/Butterfly/
105 | 952 cd ../Butterfly/
106 | 953 cd ../Freestyle/
107 | 954 cd ../Butterfly/
108 | 955 cd ../Freestyle/
109 | 956 cd ../../Swimming_Men/Butterfly/
110 | 957 echo "Swimming_Butterfly" > Isaac
111 | 958 chmod g=rwx Isaac
112 | 959 chmod a_rwx Isaac
113 | 960 chmod a-rwx Isaac
114 | 961 ls al
115 | 962 ls -al
116 | 963 chmod 070 Isaac
117 | 964 ls -al
118 | 965 echo "Swimming_Butterfly" >> /home/ashley/ABC_College/Futsal/Futsal_Men/Martin
119 | 966 cp ../../../../Futsal_Men/Martin .
120 | 967 cp /../../../Futsal/Futsal_Men/Martin .
121 | 968 cp /home/ashley/ABC_College/Futsal/Futsal_Men/Martin .
122 | 969 ~/ABC_College/
123 | 970 cd ~/ABC_College/
124 | 971 tree
125 | 972 history
--------------------------------------------------------------------------------