5 lines
129 B
Bash
Executable File
5 lines
129 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# circumspiciō: Latin for looking around, inspecting
|
|
du -a ~/my-repos/* | awk '{print $2}' | fzf | xargs -r $EDITOR
|