diff options
Diffstat (limited to 'src/LibC++/make-stdcpp-hdrs.sh')
| -rwxr-xr-x | src/LibC++/make-stdcpp-hdrs.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/LibC++/make-stdcpp-hdrs.sh b/src/LibC++/make-stdcpp-hdrs.sh new file mode 100755 index 0000000..a3730de --- /dev/null +++ b/src/LibC++/make-stdcpp-hdrs.sh @@ -0,0 +1,13 @@ +#! /bin/sh + +outputDir=libc++/ + +mkdir -p $outputDir + +for f in *.h; do + +#This line splits the file name on the delimiter "." +baseName=`echo $f | cut -d "." -f 1` +cp $f $outputDir$baseName + +done |
