.gitignore 파일 추가 및 파일 이름 정규화 기능 구현

This commit is contained in:
2024-12-16 20:05:22 +09:00
commit d8c15b6653
5 changed files with 371 additions and 0 deletions

19
run.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/bash
# Detect the operating system
OS="$(uname -s)"
case "$OS" in
Darwin)
echo "Running on macOS"
./normalize-macos $@
;;
Linux)
echo "Running on Linux"
./normalize-linux $@
;;
*)
echo "Unknown OS: $OS"
exit 1
;;
esac