-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0e8989
commit 074c660
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
777 | ||
223 touch processess.txt | ||
224 ps aux > processess.txt | ||
225 copy processess.txt copy.txt | ||
226 cp processess.txt copy.txt | ||
227 mkdir backup | ||
228 mv copy.txt | ||
229 mv copy.txt backup/copy.txt | ||
230 cd backup | ||
231 ls | ||
232 less copy.txt | ||
233 man less | ||
234 man find | ||
235 man ls | ||
236 wc -l | ||
237 wc -l copy.txt | ||
238 man wc | ||
239 wc -mlw copy.txt | ||
240 cat "777" > selected.txt | ||
241 touch selected.txt | ||
242 cat "777" > selected.txt | ||
243 echo "777" > selected.txt | ||
244 cat copy.txt| grep "bin" | ||
245 ps aux | ||
246 history | ||
247 cat copy.txt| grep "/bin" >> selected.txt | ||
248 cat selected.txt | ||
249 man tail | ||
250 history | tile -n 15 | ||
251 man tail | ||
252 history | ||
253 touch commands.txt | ||
254 history | tile -n 31 > commands.txt |