1
0
mirror of https://github.com/danbee/dotfiles-local synced 2025-03-04 08:49:07 +00:00
dotfiles-local/bin/os
2023-01-23 17:45:23 -06:00

18 lines
162 B
Bash
Executable File

#!/bin/sh
OS=`uname -s`
case $OS in
Darwin)
printf ""
;;
Linux)
printf ""
;;
FreeBSD)
printf ""
;;
esac
printf " $OS\n"