This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Exit immediately if a command exits with a non-zero status | |
set -e | |
echo "Enter the name of your new Expo project:" | |
read PROJECT_NAME | |
# Step 1: Initialize Expo app | |
npx create-expo-app@latest "$PROJECT_NAME" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Exit immediately if a command exits with a non-zero status | |
set -e | |
# Define the version you want to install | |
VERSION="1.34" # Replace with the desired version if needed | |
# Define the download URL for the specified version | |
URL="https://ftp.gnu.org/gnu/tar/tar-${VERSION}.tar.gz" |