rdsedmundo

shell link npm/yarn

Jun 7th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.15 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. FROM=$(pwd)/$1
  4. INTO=$(pwd)/$2/node_modules/$1
  5.  
  6. echo "Linking $FROM to $INTO"
  7. rm -rf $INTO
  8. ln -sfn ../../$1 $INTO
  9. chmod -h 0400 $INTO
Add Comment
Please, Sign In to add comment