whoami.m
author A.M. Thurnherr <athurnherr@yahoo.com>
Mon, 23 Feb 2015 09:19:46 +0000
changeset 15 3746197831db
parent 0 0a450563f904
permissions -rw-r--r--
IX11beta for CLIVAR P16

function a=whoami
% function a=whoami
a='unknown';
if        length(findstr('LN',computer))>0 ...
	| length(findstr('MAC',computer))>0 ...
	| length(findstr('SOL',computer))>0
   [s,a] = system('whoami');
   b = double(a);
   a(b < 32) = []; % Get Rid of Control Characters
end