Archive for July 3rd, 2006

 

Puertos

Jul 03, 2006 in Notas rápidas

Plesk

https://site:8443

Cpanel
https://site:2082 -> acceso no seguro a panel
https://site:2083 -> acceso seguro a panel
http://site:2095 -> web mail

Bash shell

Jul 03, 2006 in bash, shell scripting

Ejemplos del for :

for (( i=0 ; i<6 ; i++ )) ;do echo $i ; done ;

resultado:

1
2
3
4
5
6