Skip to content

Instantly share code, notes, and snippets.

@caramelchocolate
Created August 4, 2019 06:02
Show Gist options
  • Save caramelchocolate/14744c30bf4fbc27fb5366429c30357a to your computer and use it in GitHub Desktop.
Save caramelchocolate/14744c30bf4fbc27fb5366429c30357a to your computer and use it in GitHub Desktop.
display /etc/resolv.conf in jails
#!/bin/sh
find ./jail/base*/ -name 'resolv.conf' | xargs -L1 -I@ sh -c 'f="@";echo ">>>${f}";cat ${f}; echo "<<<${f}";echo;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment