Created
June 13, 2019 14:59
-
-
Save kjkta/6239ee0b29b6ddab1d5ee2c03f94ad25 to your computer and use it in GitHub Desktop.
Bash script to copy source files into a directory and append `.flow`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cp -r src/*.js dist/; | |
for f in dist/*; do mv $f ./dist/`basename $f `.flow; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment