| #!/bin/shecho 'install rust'sudo xcode-select -s /Applications/Xcode.app/Contents/Developercurl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly -yecho 'export PATH="$$HOME/.cargo/bin:$$PATH"' >> ~/.bash_profilesource ~/.bash_profile
 |