This file contains 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
Java ▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░ 44.2% | |
C ▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░ 20.9% | |
Vue ▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░ 15.7% | |
SQL ▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 6.0% | |
JavaScript ▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ 4.3% |
This file contains 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 | |
# Prompt the user for the download URL | |
read -p "Enter the Java download URL: " download_url | |
# Extract the Java version from the URL | |
java_version=$(echo "$download_url" | grep -oP '(?<=jdk)\d+') | |
# Check if the version was extracted successfully | |
if [ -n "$java_version" ]; then |
This file contains 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
/* | |
* Copyright (c) 2022, justeli.me - All Rights Reserved | |
* Unauthorized copying of this file, via any medium is strictly prohibited | |
*/ | |
package me.justeli.utility.util; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.Collections; |