awesome-bashrc icon indicating copy to clipboard operation
awesome-bashrc copied to clipboard

🚀 Collection of bash snippets/aliases that will save your time on the terminal

Results 7 awesome-bashrc issues
Sort by recently updated
recently updated
newest added

Working with python, python-virtualenv and anaconda environments can be simplified with aliases, especially when you are dealing with multiple virtual environments which use different versions of python.

Usecase: Run a flaky test n number of times to test it if fails. But you can run any command. ``` #!/bin/sh if [[ "$1" == "-h" ]] then echo...

```sh for entry in "$1"/**/*.js do echo $entry while read -r line; do cat $entry | grep -n $line; done < $2 done ```

@aashutoshrathi following func is what I use, but as you can see it only reads the `.zshrc` file. We can check for the shell and determine where to look. I...

``` clgitb() { # Update remotes tracking data git fetch origin # Delete the refs to remote branches that no longer exist. git remote prune origin # Remove local fully...

Add Telegram webhooks

enhancement