Skip to content

Instantly share code, notes, and snippets.

@tayiorbeii
Created November 2, 2022 06:45
Show Gist options
  • Save tayiorbeii/4417de3eb5094dfef3f8922a769f120a to your computer and use it in GitHub Desktop.
Save tayiorbeii/4417de3eb5094dfef3f8922a769f120a to your computer and use it in GitHub Desktop.
import "@johnlindquist/kit"
// Name: stub-notion-pages-from-md-files
let directory = await arg('Transcript directory: ')
await cd(directory)
let {_stdout} = await $`ls *.md`
let allMdFiles = _stdout.split('\n').map(file => file.replace('.md', ''))
await copy(allMdFiles.join('\n\n'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment