Skip to content

Instantly share code, notes, and snippets.

@Nikoos
Created March 5, 2018 19:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nikoos/1ddbb6080f4a850c33d7c7a46e37e8cc to your computer and use it in GitHub Desktop.
Save Nikoos/1ddbb6080f4a850c33d7c7a46e37e8cc to your computer and use it in GitHub Desktop.
List all apt sources in debian/ubuntu OS
for F in $(find /etc/apt/ -name "*.list" -type f)
do
echo "${F}"
echo "================================="
cat "${F}"
echo ""
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment