summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++/make_cxx_headers.sh
blob: 7e23e2ce92ba29307a8d40947cbaa70d340bf54a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /bin/sh

outputDir=stdcxx/

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