https://github.com/jumplink/cli-utilities
A set of command line utilities
https://github.com/jumplink/cli-utilities
Last synced: over 1 year ago
JSON representation
A set of command line utilities
- Host: GitHub
- URL: https://github.com/jumplink/cli-utilities
- Owner: JumpLink
- License: mit
- Created: 2017-01-17T08:42:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-17T09:18:30.000Z (over 9 years ago)
- Last Synced: 2025-02-02T18:15:38.475Z (over 1 year ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cli-utilities
A set of command line utilities
# Install
```
git clone https://github.com/JumpLink/cli-utilities.git
cd cli-utilities
chmod +x replace-in-files.sh
sudo ln -s $PWD/replace-in-files.sh /usr/local/bin/replace-in-files
chmod +x find-in-files.sh
sudo ln -s $PWD/find-in-files.sh /usr/local/bin/find-in-files
```
# Usage
## find in files
Find all files containing specific text recursively in current path
```
find-in-files "liebe"
```
## replace in files
Replace text in text files recursively in current path
```
replace-in-files "liebe" "böse"
```
# Help
* [How to to create a command line shortcut?](http://unix.stackexchange.com/a/226321)
# See also
* [alebcay/awesome-shell](https://github.com/alebcay/awesome-shell)
* [aharris88/awesome-cli-apps](https://github.com/aharris88/awesome-cli-apps)