summaryrefslogtreecommitdiff
path: root/public/posts/fishshell/index.html
blob: c049c5b46485b615c764f12cb8638f1d91c4b33f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="/assets/css/main.css">
    <title>Trying out fish 🐟</title>
  </head>
  <body>
    <article>
      <nav class="site-nav">
        <div class="nav-container">
          <div class="nav-left">
            <a href="/" class="site-title">Shipwreckt</a>
          </div>
          <ul class="nav-right">
            <li><a href="/">Home</a></li>
            <li><a href="/archive/">Archive</a></li>
            <li><a href="/links/">Links</a></li>
            <li><a href="/contact/">Contact</a></li>
          </ul>
        </div>
      </nav>
      <header>
        <h1>Trying out fish 🐟</h1>
        <p class="post-date">August 22, 2024</p>
      </header>
      <div class="post-content">
        <hr>
        <img class="right-image" width="250" src="/images/logos/fish.png">
<h2>Introduction</h2>
<p><a href="https://fishshell.com">Fish shell</a> is a command-line shell mostly written in the Rust programming language for Unix-related systems that aims to be user-friendly. The reason I have chosen to try fishing is because I like some of the features it comes with!</p>
<h2>Features of Fish 🐟</h2>
<p>Fish aims to be a smart, user-friendly command line shell</p>
<ul>
<li>Tab completion</li>
<li>Themes</li>
<li>Syntax highlighting</li>
<li>Web Based Configuration</li>
</ul>
<hr>
<h2>What I like about Fish!</h2>
<p>My favourite feature of the fish shell is that it has built-in tab completion, meaning it gives you options for the command you are inputting into the terminal. This also remembers the last time you typed in a command, so when I am sshing into a server, it makes it so much easier!</p>
<center>
<img  width="840" src="/images/screenshots/fishscreen.png">
</center>
<p>I also like the fact that all of the features listed above come out of the box! The only configuration I have had to do is set my aliases and make the Starship program work. I do know there are <a href="https://github.com/jorgebucaran/fisher">plugins</a> that I do need to take a look at, but for now, I do not see any need for any since I am happy with what they come with!</p>
<hr>
<h2>Last thoughts</h2>
<p>Overall, I am rather impressed by fish. I will use it as my main shell for the time being, but if I do have any problems, I can just switch to Bash shell for the duration of that problem. I know there is probably a bunch I have missed out on Fish shell, but so far it has been smooth and I have nothing but good to say about it!</p>
<p>Thank you for reading.</p>

      </div>
    </article>

    
    

    <footer class="post-footer">
      <!-- 🌟 Back button -->
      <a href="/" class="back-button">⬅ Back to Home</a>

      
      <p class="post-tags">
      
      <a href="/tags/linux/"
         aria-label="View posts tagged linux">
        linux
      </a>
      
      <a href="/tags/tech/"
         aria-label="View posts tagged tech">
        tech
      </a>
      
      </p>
      
    </footer>

  </body>
</html>