Hi:
perl -e 'print "hello world!\n"'
A simple filter:
perl -ne 'print if /REGEX/'
Filter out blank lines (in place):
Hi:
perl -e 'print "hello world!\n"'
A simple filter:
perl -ne 'print if /REGEX/'
Filter out blank lines (in place):
| <?xml version="1.0" encoding="utf-16"?> | |
| <Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns"> | |
| <TypePattern DisplayName="COM interfaces" Priority="2000"> | |
| <TypePattern.Match> | |
| <And> | |
| <Kind Is="Interface" /> | |
| <Or> | |
| <HasAttribute Name="System.Runtime.InteropServices.InterfaceTypeAttribute" /> | |
| <HasAttribute Name="System.Runtime.InteropServices.ComImport" /> | |
| </Or> |
| # velox/flake.nix | |
| # following https://www.breakds.org/post/nix-based-c++-workflow/ | |
| { | |
| description = "A flake for building velox"; | |
| inputs = { | |
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | |
| utils.url = "github:numtide/flake-utils"; | |
| utils.inputs.nixpkgs.follows = "nixpkgs"; |