MATLAB: How to use the unix command ‘ln’ in matlab to create an symbolic link

unix

How can I use the unix command 'ln' in matlab to create an symbolic link?
I would like to put this command into my script: ln -s /dev/ttyACM0 /dev/ttyS101
Any help is greatly appreciated.
– Kristine

Best Answer

system('ln -s /dev/ttyACM0 /dev/ttyS101')