Skip to content

Commit

Permalink
Create an alias for the sl command (#83)
Browse files Browse the repository at this point in the history
so that the animation runs as intended when mistyping 'ls' - it's more fun that way :-)
  • Loading branch information
AvanBerne committed Jun 13, 2024
1 parent 1fb363a commit 1f411fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/steps/4-personalize-codespace.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Let's see how this works!

sudo apt-get update
sudo apt-get install sl
alias sl="/usr/games/sl"
```

1. Save the file.
Expand Down Expand Up @@ -73,7 +74,7 @@ Let's see how this works!
1. From the VS Code terminal, type or paste:

```shell
/usr/games/sl
sl
```

1. Enjoy the show!
Expand Down

1 comment on commit 1f411fd

@LucasWillemsens
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For me, bash did not recognize sl as the alias was not recognized as an absolute path. After manually calling ../../usr/games/sl, however, I did enjoy the show

Please sign in to comment.