summaryrefslogtreecommitdiffhomepage
path: root/dev/LibC++/make_stdcc.sh
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-08-16 19:55:22 +0200
committerGitHub <noreply@github.com>2025-08-16 19:55:22 +0200
commit5467549fa5d656afd0c6bf12c6c3928a8c919591 (patch)
tree755d6bf288f0bd474641d9ace1de290991feffee /dev/LibC++/make_stdcc.sh
parent433bb5ef102b2bfa0049468be00d63011da8b973 (diff)
parent0c14f7cff6535d110bc95a7699db043d8aa9aa1a (diff)
Merge pull request #9 from nekernel-org/dev
v0.0.3
Diffstat (limited to 'dev/LibC++/make_stdcc.sh')
-rwxr-xr-xdev/LibC++/make_stdcc.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/dev/LibC++/make_stdcc.sh b/dev/LibC++/make_stdcc.sh
new file mode 100755
index 0000000..7e23e2c
--- /dev/null
+++ b/dev/LibC++/make_stdcc.sh
@@ -0,0 +1,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