aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-06-23 22:23:34 +0200
committerGabriel Arakaki Giovanini <mail@gabrielgio.me>2022-06-23 22:23:34 +0200
commit4f3b7a9fbb951257a039a84cafcd9f897a6bc197 (patch)
tree821b99ff224415c8c458504af5d6f5cffe1455ac
parentcaa1350c972f405760de14adc649cf2ce5f3cf14 (diff)
downloadgabrielgio.me-4f3b7a9fbb951257a039a84cafcd9f897a6bc197.tar.gz
gabrielgio.me-4f3b7a9fbb951257a039a84cafcd9f897a6bc197.tar.bz2
gabrielgio.me-4f3b7a9fbb951257a039a84cafcd9f897a6bc197.zip
fix: Types and datetime
-rw-r--r--content/posts/2022-06-23-fish_command.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/content/posts/2022-06-23-fish_command.md b/content/posts/2022-06-23-fish_command.md
index 3533b86..697ba07 100644
--- a/content/posts/2022-06-23-fish_command.md
+++ b/content/posts/2022-06-23-fish_command.md
@@ -1,6 +1,6 @@
---
title: "Shortcutting with fish shell"
-date: 2022-02-23
+date: 2022-06-23
tags: ['fish', 'linux', 'shell']
---
@@ -9,10 +9,11 @@ has been a great experience. It has sane defaults and with almost no work I
have a perfectly function shell with a great auto completion engine. I have
also tried zsh before and although it is great shell it require some work to
come to same level of fish, even after you include oh-my-zsh[^2] (which I'd
-highly recommend to use if you are starting to use zsh). One thing to keep in
+highly recommend to use if you are starting with zsh). One thing to keep in
mind is that fish is far from sh or bash compatible, so if you have something
-built in sh or bash it won't work with fish. Anyhow, what I want to show here
-is how much you can optimize your workflow with just a couple lines of shell.
+built in sh or bash it won't work with fish (as you can't source it). Anyhow,
+what I want to show here is how much you can optimize your workflow with just a
+couple lines of shell.
## The use case
@@ -112,7 +113,7 @@ you will jump right into the folder. Due to the fuzzy finder algorithm you
won't need to type more then a couple of char making the whole process really
fast.
-This is just a jump start to using script to make your life easier. Shell
+This is just a jump start using script to make your life easier. Shell
scripting is a powerful tool for a programmer and it will definitely pay
dividends if you spend time to master it.