Last active
July 17, 2020 16:42
-
-
Save illescasDaniel/d73943e30dfd8ee8011eff1fd597e822 to your computer and use it in GitHub Desktop.
Some shell aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alias d-list="exa --long --all --header --git --classify" | |
| alias d-listv="exa --long --header --git --classify" | |
| alias d-list-trash="gio list -lh trash://" | |
| alias d-open="gio open" | |
| alias d-show="batcat" | |
| alias d-edit="micro" | |
| alias d-copy="gio copy --progress --interactive" | |
| alias d-copyb="d-copy --backup" | |
| alias d-move="gio move --progress --interactive" | |
| alias d-moveb="d-move --backup" | |
| alias d-rename="gio rename" | |
| alias d-tree="colorls --tree ." # or: gio tree | |
| alias d-trash="gio trash" | |
| alias d-mkdir="gio mkdir --parent" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment