Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hicolour/awesome-fzf
Simple utilities makes the biggest difference
https://github.com/hicolour/awesome-fzf
List: awesome-fzf
daily fzf fzf-scripts rutines unixporn
Last synced: 3 months ago
JSON representation
Simple utilities makes the biggest difference
- Host: GitHub
- URL: https://github.com/hicolour/awesome-fzf
- Owner: hicolour
- Created: 2019-08-20T13:15:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-20T13:21:15.000Z (over 5 years ago)
- Last Synced: 2024-11-09T00:02:19.680Z (3 months ago)
- Topics: daily, fzf, fzf-scripts, rutines, unixporn
- Size: 1000 Bytes
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# fzf is awesome
Simple utilities makes the biggest difference### History
Search and paste to console
```
hs() { stty -echo && history | grep ""$@ | awk '{$1=$2=$3=""; print $0}' | fzf | xargs -I {} xdotool type {} && stty echo; }
```Search and execute to console
```
hsa() { history | awk '{$1=$2=$3=""; print $0}' | fzf | xargs -0 -I {} xdotool type {} ; }
```# Process
Process search and kill
```
psk() { ps -afx| fzf | xargs -0 -I {} echo {} | awk '{ printf $1 }' | xargs -0 -I {} kill -9 {}; }
```# Daily rutine
Jump to the project dir
```
jp() { find ~/projects/ -maxdepth 3 -type d | fzf | xargs -0 -I {} xdotool type "cd {}" ; }
```