Skip to content

Instantly share code, notes, and snippets.

@sarkrui
Created January 10, 2022 10:53
Show Gist options
  • Save sarkrui/6cea9953e3e90d6487bd5849fa38530a to your computer and use it in GitHub Desktop.
Save sarkrui/6cea9953e3e90d6487bd5849fa38530a to your computer and use it in GitHub Desktop.
Eliminate commented and empty lines
```
cat *.config | grep -v '^#' | grep -v '^[[:space:]]*$'
```
@sarkrui
Copy link
Author

sarkrui commented Jan 11, 2022

ssh [email protected] "cat ~/Projects/lede/.config | grep -v '^#' | grep -v '^[[:space:]]*$'" > /dev/clipboard.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment