Markovtsev Vadim
Web Programming @ MIPT, 2015-2016
Unix |
| ||
---|---|---|---|
Windows |
| ||
W3Techs.com, 22 September 2015 | |||
Percentages of websites using various operating systems Note: a website may use more than one operating system |
Use VirtualBox to try, or install on host (dangerous, but cool).
apt-get install chromium-browser
brew install git
All scripts must carry a shebang, e.g.
#!/bin/sh -e
Example:
$ ls -la
total 32
drwxr-xr-x 5 markhor staff 170 22 Sep 21:01 .
drwxr-xr-x 9 markhor staff 306 22 Sep 20:59 ..
-rw-r--r--@ 1 markhor staff 7948 22 Sep 23:23 index.html
Examples:
kill -SIGTERM <pid>
killall -15 <name>
Examples:
cat /path/to/file_list | sort | uniq | xargs file
grep key /file | write <user>
man
man man
man ls
history
- prints your typed commandsDo not forget about tab completion!