See the Security and Bug Fixes Section - Grub EFI Install Updates Fix Sticky


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Ten Things I Wish I’d Known About bash
#1
Good blog post by Ian Miell that I stumbled upon.

https://zwischenzugs.com/2018/01/06/ten-...bout-bash/

Here's one of his tips:
Quote:Have you ever done something like this?
[pre]$ grep somestring file1 > /tmp/a
$ grep somestring file2 > /tmp/b
$ diff /tmp/a /tmp/b[/pre] That works, but instead you can write:
[pre]diff <(grep somestring file1) <(grep somestring file2)[/pre] Isn’t that neater?
Reply


Messages In This Thread
Ten Things I Wish I’d Known About bash - by Mike - 01-07-2018, 07:12 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)