1
0
lpo-image-processing/app/python/py_simple_gimp/create_python_files.sh

10 lines
169 B
Bash
Executable File

for file in $2*.cpp
do
echo "$file"
[[ -e "$file" ]] || break
output_file="$(basename -s .cpp "$file")"
echo "$output_file";
touch $2$output_file'.py';
done;