Created
February 26, 2025 17:40
-
-
Save AbhishekGhosh/086542662c517939b93cfb24532fbc24 to your computer and use it in GitHub Desktop.
List Ubuntu Repo
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 | |
# List repositories from sources.list | |
echo "Repositories in /etc/apt/sources.list:" | |
cat /etc/apt/sources.list | grep -E '^[^#]' | |
echo "" | |
# List repositories from sources.list.d directory | |
echo "Repositories in /etc/apt/sources.list.d/:" | |
for file in /etc/apt/sources.list.d/*.list; do | |
if [ -f "$file" ]; then | |
echo "\n$file:" | |
cat "$file" | grep -E '^[^#]' | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment