How to create a Symbolic link to PHPUnit?
问题 I'm using Laravel. Whenever I need to run the tests I have to execute PHPUnit in the following directory: vendor/phpunit/phpunit/phpunit How can I create a symlink to the file above so that I don't have to type in the full path to phpunit every time ? I tried the following command but didn't work: ln -s vendor/phpunit/phpunit/phpunit mysym For some reason, it says 'Command Not Found' when I try to execute the Symlink. 回答1: How can I create a symlink to the file above so that I don't have to