Skip to content

Instantly share code, notes, and snippets.

@AbhishekGhosh
Created February 26, 2025 17:40
Show Gist options
  • Save AbhishekGhosh/086542662c517939b93cfb24532fbc24 to your computer and use it in GitHub Desktop.
Save AbhishekGhosh/086542662c517939b93cfb24532fbc24 to your computer and use it in GitHub Desktop.
List Ubuntu Repo
#!/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