Skip to content

Commit 0cdee73

Browse files
authored
Update linux-command-line.md
1 parent cc7b1b2 commit 0cdee73

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

content/posts/linux-command-line.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -181,25 +181,25 @@ description of shebangs here.
181181
</tr>
182182
<tr>
183183
<td>#!/bin/bash</td>
184-
<td>the default bash location on linux</td>
184+
<td>the classic bash location on linux</td>
185185
<td>✅</td>
186186
<td>✅</td>
187187
<td>✅</td>
188-
<td>⚠️</td>
189-
<td>⚠️</td>
188+
<td></td>
189+
<td></td>
190190
</tr>
191191
<tr>
192192
<td>#!/usr/bin/bash</td>
193-
<td>works on freebsd</td>
194-
<td>⚠️</td>
195-
<td>⚠️</td>
196-
<td>⚠️</td>
197-
<td>⚠️</td>
193+
<td>the modern bash location on linux</td>
194+
<td>✅</td>
198195
<td>✅</td>
196+
<td>✅</td>
197+
<td>❌</td>
198+
<td>❌</td>
199199
</tr>
200200
<tr>
201201
<td>#!/bin/env bash</td>
202-
<td>the env binary is almost never in bin</td>
202+
<td>the env binary is almost never in bin/</td>
203203
<td>❌</td>
204204
<td>❌</td>
205205
<td>❌</td>
@@ -240,16 +240,16 @@ description of shebangs here.
240240
</tr>
241241
<tr>
242242
<td>#!/usr/bin/sh</td>
243-
<td>works on freebsd</td>
244-
<td>⚠️</td>
245-
<td>⚠️</td>
246-
<td>⚠️</td>
247-
<td>⚠️</td>
248-
<td></td>
243+
<td>the sh binary is almost never in usr/bin/</td>
244+
<td></td>
245+
<td></td>
246+
<td></td>
247+
<td></td>
248+
<td></td>
249249
</tr>
250250
<tr>
251251
<td>#!/bin/env sh</td>
252-
<td>the env binary is almost never in bin</td>
252+
<td>the env binary is almost never in bin/</td>
253253
<td>❌</td>
254254
<td>❌</td>
255255
<td>❌</td>

0 commit comments

Comments
 (0)