Skip to content

Instantly share code, notes, and snippets.

@dougpagani
Created March 3, 2022 21:42
Show Gist options
  • Save dougpagani/2e06586cd3db85cf284c2fb7ea77418c to your computer and use it in GitHub Desktop.
Save dougpagani/2e06586cd3db85cf284c2fb7ea77418c to your computer and use it in GitHub Desktop.
# obviously need to modify this, just an example
examples=($(find "$EXAMPLE_FILES_DIR" -iname "*.${extension}"));
PS3='Select which file: ';
select opt in "${examples[@]}";
do
vim "${opt}" && printf "${opt}" | pbcopy && break;
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment