mirror of
https://github.com/guilhermewerner/http
synced 2025-06-16 11:44:17 +00:00
14 lines
131 B
Bash
14 lines
131 B
Bash
#!/usr/bin/env sh
|
|
|
|
# Linux
|
|
|
|
if [ "$(expr substr $(uname -s) 1 5)" = "Linux" ]
|
|
then
|
|
|
|
# Mac
|
|
|
|
elif [ "$(uname)" = "Darwin" ]
|
|
then
|
|
|
|
fi
|