We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73ca175 commit 1c256a2Copy full SHA for 1c256a2
helper-bash-functions.md
@@ -4,6 +4,8 @@
4
function mkcd() {
5
mkdir -p "$*" && cd "$_"
6
}
7
+
8
+$ mkcd foo
9
```
10
11
@@ -12,5 +14,17 @@ function mkcd() {
12
14
function myip() {
13
15
ifconfig | grep "inet " | grep -Fv 127.0.0.1 | awk '{print $2}'
16
17
18
+$ myip
19
+```
20
21
+## gitignore 쉽게 만들기
22
23
+```bash
24
+function gi() {
25
+ curl -L -s https://www.gitignore.io/api/$@
26
+}
27
28
+$ gi intellij > .gitignore
29
30
0 commit comments