소스 검색

Add command to install a binary software in bin

DricomDragon 5 년 전
부모
커밋
c71179520b
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11 0
      Guides/shell.md

+ 11 - 0
Guides/shell.md

@@ -0,0 +1,11 @@
+# Shell
+
+Useful common Unix commands and tricks
+
+## Link a binary in your local bin
+
+```sh
+ln -s -T ~/Software/GitAhead/GitAhead ~/.bin/gitahead
+```
+
+To use a physical link instead of a symlink, use `-S` instead of `-s`