Metadata-Version: 2.1
Name: quick-cd
Version: 1.1.0
Summary: Save working directory under label and cd into it quickly.
Home-page: https://gitlab.com/halftough/quick-cd
Author: HalfTough
Author-email: halftough29A@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Description-Content-Type: text/markdown

# Quick cd
Bookmark cd is little tool allowing you to save any directory under a label, so you can quickly cd into it with out giving whole path.

## Usage
To save current location under label "my_location" use  
```
qcd -c my_location
```

You can also, specify relative or absolute path, to save it instead of current directory.
```
qcd -c my_location ../different_dir
```
To cd into saved location, simply give label without any additional arguments
```
qcd my_location
```
To remove previously saved location use
```
qcd -d label
```
To list all saved locations
```
qcd -l
```

