Skip to content
Snippets Groups Projects
rust.sh 130 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/bash
    
    
    #
    # Install Rust
    #
    
    
    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
    
    source "$HOME/.cargo/env"