From a9a51e7d82c5d19aa3102a47c6d403e7b1cbf5dd Mon Sep 17 00:00:00 2001 From: Rico Ullmann Date: Sun, 24 Apr 2016 15:49:07 +0200 Subject: [PATCH] add fisherman install section --- README.md | 46 ++++++++++++++++++++++++++-------------------- 1 file changed, 26 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 892df5f..50d94dc 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,16 @@ Small collection of functions I'm using with the [fish shell](https://fishshell. ## installation -You can install the functions with [oh-my-fish](https://github.com/oh-my-fish/oh-my-fish): +You can install with [fisherman](https://github.com/fisherman/fisherman):
-	omf install git@github.com:rullmann/fish-aliases.git
+fisher https://github.com/rullmann/fish-aliases
+
+ +Or with [oh-my-fish](https://github.com/oh-my-fish/oh-my-fish): + +
+omf install git@github.com:rullmann/fish-aliases.git
 
## aliases / functions description @@ -23,22 +29,22 @@ Fixed! From time to time I need to find folders which are taking much to many space. Here's the solution:
-    ┌ rullmann@foobar /tmp/test
-    └ $ ds
-    1.0M	2
-    6.2M	1
-    617M	3
+┌ rullmann@foobar /tmp/test
+└ $ ds
+1.0M	2
+6.2M	1
+617M	3
 
-    ┌ rullmann@foobar ~
-    └ $ ds /var/log/
-    1.3M	/var/log/asl/Logs
-    2.0M	/var/log/powermanagement
-    2.2M	/var/log/module/com.apple.cdscheduler
-    3.8M	/var/log/module/com.apple.ical
-    6.5M	/var/log/module
-    19M	/var/log/DiagnosticMessages
-    95M	/var/log/asl
-    151M	/var/log/
+┌ rullmann@foobar ~
+└ $ ds /var/log/
+1.3M	/var/log/asl/Logs
+2.0M	/var/log/powermanagement
+2.2M	/var/log/module/com.apple.cdscheduler
+3.8M	/var/log/module/com.apple.ical
+6.5M	/var/log/module
+19M	/var/log/DiagnosticMessages
+95M	/var/log/asl
+151M	/var/log/
 
### psgrep - show matching processes for $argv @@ -46,9 +52,9 @@ From time to time I need to find folders which are taking much to many space. He Typing `ps aux | grep $arg` has come to an end:
-	┌ rullmann@foobar ~
-	└ $ psgrep fish
-    rullmann         95421   0.1  0.0  2500916   4660 s010  S     2:26PM   0:03.41 fish
+┌ rullmann@foobar ~
+└ $ psgrep fish
+rullmann         95421   0.1  0.0  2500916   4660 s010  S     2:26PM   0:03.41 fish
 
### nsgrep - show open ports for $argv