這些東西可以是enum、struct...
- 原本:
char name[20];
int height;
int weight;
};
struct people a;
- 可以寫成
char name[20];
int height;
int weight;
}People;
People a;
- 原本
enum week today = Sun;
- 可以寫成
Week today = Sun
The default /bin/sh shell on Debian and Debian-based systems is bash.
However, since the default shell is required to be POSIX-compliant, any shell that conforms to POSIX, such as dash, can serve as /bin/sh.
You may wish to do this because dash is faster and smaller than bash.