1
2
3
4
5
6
7
8
// MacOS에서 고정 환경변수를 가져옵니다.
pub fn get_profile_path() -> String {
    let username = whoami::username();
    let user_path = format!("/Users/{}", username);
    let profile_path = format!("{}/.zshenv", user_path);

    profile_path
}