5 lines
51 B
Bash
Executable File
5 lines
51 B
Bash
Executable File
#!/bin/sh
|
|
|
|
_dir="$1"
|
|
cd "${_dir:=.}" && vim $(fzf)
|