mirror of
https://github.com/jung-geun/NFD2NFC.git
synced 2025-12-20 04:20:45 +09:00
20 lines
311 B
Bash
Executable File
20 lines
311 B
Bash
Executable File
#!/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
|