| . |
|
. |
| |
| Linux |
| Quick guru |
| Get help | man cmd_name |
| Change password | passwd |
| List files | ls -lh |
| notes | -l = long -h = human readable sizes |
| Change directory | cd dir_name |
| Copy file | cp file new_file |
| Move file | mv file target |
| Remove file | rm -f file |
| notes | -f = force delete without prompt |
| Print file to screen | cat file |
| Set permissions | chown -R apache:apache /var/www/* |
| Set executable | chmod -R 755 /var/www/cgi-bin/* |
| notes | -R = Recursive |
|
| Documentation |
|
|
| Bash scripting |
|
|
| VI editor |
|
|
|
|
|
|
|