Skip to content

Commit

Permalink
A note on using bash + win
Browse files Browse the repository at this point in the history
  • Loading branch information
evbogdanov committed Oct 1, 2018
1 parent 60f1729 commit f8bc53d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Expand Up @@ -172,6 +172,20 @@ Edit ,x/Acme/ {
- `page FILE` view graphics files
- `web URL` open url in your browser

## Wanna use bash inside win?

Put in your .bashrc
```
## If inside Acme...
if [ "$winid" ]; then
## ... then patch the `cd` command
_cd () {
\cd "$@" && awd
}
alias cd=_cd
fi
```

## Resources

- [Acme homepage](http://acme.cat-v.org/)
Expand Down

0 comments on commit f8bc53d

Please sign in to comment.