dotfiles/.local/bin/bp

13 lines
210 B
Text
Raw Normal View History

2023-08-24 11:38:18 +02:00
#!/bin/bash
# bp
# creates folder in /tmp with bun init a.k.a bun playground
BP_TEMP_PATH=$(mktemp -d --suffix=-bun.playground)
cd $BP_TEMP_PATH
2023-12-24 21:05:52 +01:00
#bun init -y
#nvim .
code $BP_TEMP_PATH
2023-08-24 11:38:18 +02:00
2023-12-24 21:05:52 +01:00
#rm -rf $BP_TEMP_PATH