I want to know, how can we check in the bashrc file, what operating system is it?
How can I check if the Operating System is Sun Os or Unix or Solaris from by bashrc
37k Views Asked by Kumar Alok At
3
There are 3 best solutions below
0

There is no portable way to know what Operating System is running.
Depending on the OS, uname -s
will tell you what kernel you are running but not necessarily what OS.
Moreover, it cannot be SunOS or Unix or Solaris. Solaris is all of them: both a Unix compliant OS and an OS based on the SunOS kernel.
One of these might give you a precise answer depending on the Unix or Linux implementation:
cat /etc/release # SVR4, Solaris
cat /etc/redhat-release
cat /etc/*elease
cat /etc/lsb-release
oslevel -r # AIX
system_profiler -detailLevel -2 # Mac OS/X
Use
uname -a
in your.bashrc
file.