Tag: tcsh

The bashrc bash configuration files

The default shell in most Linux distributions is the bash shell. Contrary to all the usability work that has been done to the GUI, the shell is most neglected area. Depicting a shell is not an easy task; in the screenshot above we only show the default prompt. It has the following disadvantages, It does …

Continue reading

Permanent link to this article: https://blog.simos.info/the-bashrc-bash-configuration-files/

Localisation issues in home directory folders (xdg-user-dirs)

In new distributions such as Ubuntu 7.10 there is now support for folder names of personal data in your local language. What this means is that ~/Desktop can now be called ~/Επιφάνεια εργασίας. You also get a few more default folders, including ~/Music, ~/Documents, ~/Pictures and so on. This functionality of localised home folders has …

Continue reading

Permanent link to this article: https://blog.simos.info/localisation-issues-in-home-directory-folders-xdg-user-dirs/

Τι εκτυπώνει το πρόγραμμα; [Λύση]

#include <stdio.h> int calculate(void); int calculate(void) { int i; int p[9]; for ( i = 0; i <= 3; i++ ) p[i*3+2]+=16; } int main(int argc, char** argv) { calculate(); printf("Hello, World!\n"); return 0; } Μεταγλωττίζουμε το πρόγραμμα της προηγούμενης εγγραφής και εκτελούμε (πλατφόρμα Linux/i386, gcc 4.0.x). simos@home /tmp $ gcc calculate.c -o calculate simos@home …

Continue reading

Permanent link to this article: https://blog.simos.info/%cf%84%ce%b9-%ce%b5%ce%ba%cf%84%cf%85%cf%80%cf%8e%ce%bd%ce%b5%ce%b9-%cf%84%ce%bf-%cf%80%cf%81%cf%8c%ce%b3%cf%81%ce%b1%ce%bc%ce%bc%ce%b1-%ce%bb%cf%8d%cf%83%ce%b7/