https://github.com/gamcoh/terminalscripts
Scripts that automates certain tasks in the terminal
https://github.com/gamcoh/terminalscripts
git linux python terminal
Last synced: 3 months ago
JSON representation
Scripts that automates certain tasks in the terminal
- Host: GitHub
- URL: https://github.com/gamcoh/terminalscripts
- Owner: gamcoh
- Created: 2019-12-18T14:06:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-18T12:28:50.000Z (about 6 years ago)
- Last Synced: 2025-04-04T00:18:06.351Z (about 1 year ago)
- Topics: git, linux, python, terminal
- Language: Python
- Size: 3.91 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terminalScripts
Scripts that automates certain tasks in the terminal
## getUntrackedFiles
### Usage
Create a symbolic link in `/usr/local/bin/` or any other directory that is in your `$PATH` variable
```
ln -s ~/terminalScripts/getUntrackedFilesGit.py /usr/local/bin/ugf
```
Get all unstaged files in a git repository
```
ugf
```
Get specific files
```
ugf 0
ugf N
ugf 3:6
ugf -1
ugf ::-1
```
Delete a specific file
```
rm $(ugf 4)
```