Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Bash cheatsheets #1247

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions Programming Languages/Bash/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Bash (Bourne Again SHell) is a powerful command-line interpreter and scripting l
- [Tools](#tools)
- [Projects](#projects)
- [Courses](#courses)
- [Bash Cheatsheets](#cheatsheets)
- [Conclusion](#conclusion)

## Roadmap
Expand Down Expand Up @@ -277,6 +278,33 @@ Here are courses you may consider:
</tr>
</table>

## Bash Cheatsheets

Provides quick reference guides for commonly used commands and syntax in Bash scripting, helping learners easily find and use key information.

<table width="100%" id="cheatsheets">
<tr>
<th>Resource Name</th>
<th>Description</th>
</tr>
<tr>
<td><a href="https://devhints.io/bash">Bash scripting cheatsheet</a></td>
<td>This cheatsheet provides a quick reference to get started with Bash scripting.</td>
</tr>
<tr>
<td><a href="https://quickref.me/bash.html">Bash cheatsheet</a></td>
<td>This cheatsheet is a quick reference for getting started with Linux bash shell scripting.</td>
</tr>
<tr>
<td><a href="https://www.codecademy.com/learn/bash-scripting/modules/bash-scripting/cheatsheet">Codecademy - Bash Scripting Cheatsheet</a></td>
<td>This cheatsheet covers fundamental to intermediate concepts of Bash Scripting, as provided by Codecademy.</td>
</tr>
<tr>
<td><a href="https://phoenixnap.com/kb/bash-commands">30 Bash Commands Cheat Sheet</a></td>
<td>This cheat sheet covers 30 bash commands for quick reference.</td>
</tr>
</table>

## Conclusion

In conclusion, Bash is a versatile and powerful tool for automating tasks, managing systems, and building complex scripts. With its rich set of features and straightforward syntax, Bash scripting can greatly enhance your productivity and efficiency in a Unix-based environment. Whether you're a beginner or an experienced developer, the resources provided in this guide offer a solid foundation and pathway to mastering Bash scripting. Happy coding!
Loading