- May 2024
-
-
Ausführliche Artikel der taz über das fossil fuel crime file, eine von Greenpeace erstellte Liste von Verbrechen und zivilrechtlichen Vergehen derFfossilindustrie. Sie dient als Basis für juristische Aktionen. https://taz.de/Fossilindustrie-vor-Gericht/!5936699/
Tags
- mode: legal action
- region: Niger delta
- actor: Lundin Energy
- actor: Statoil
- project: East African Crude Oil Pipeline
- project: EACOP
- expert: Lisa Göldner
- expert: Channa Samkalden
- expert: Donald Pöls
- actor: OMV
- NGO: Friends of the Earth
- TotalEnergies
- NGO: Greenpeace
- actor: Shell
- actor: Glencore
- actor: Equinor
- actor: ENI
- project: Mining Impact
- NGO: Milieudefensie
Annotators
URL
-
- Feb 2024
-
unix.stackexchange.com unix.stackexchange.com
-
#!/bin/sh if [ "$#" -eq 0 ]; then set -- /dev/stdin fi for pathname do gawk -f awk_prac.awk "$pathname" done
-
if [ "$#" -eq 0 ]; then cat else printf '%s\n' "$@" fi |
-
-
unix.stackexchange.com unix.stackexchange.com
-
if [ "$#" -ne 0 ] then printf '%s\n' "$1" else cat fi |
Comparible to this solution for the case of a script file (rather than function): https://hyp.is/6UIWdNaREe6L5DMx96BIOA/unix.stackexchange.com/questions/580971/how-to-write-a-script-that-accepts-input-from-stdin-or-a-file
-
-
stackoverflow.com stackoverflow.com
-
Do not pass arguments right into subshell, it's as unsafe as eval.
-
- Jan 2024
-
-
Guter Überblick über das Lobbying-Netzwerk der deutschen Gasindustrie. Der Verbraucht an Erdgas hat sich in Deutschland seit 1990 verdoppelt, obwohl Erdgas insgesamt etwa so viel Emissionen verursacht wie Kohle. Die LNG-Infrastruktur, die die deutsche Bundesregierung gerade aufbaut, ist auf um ein Drittel höhere Kapazitäten angelegt, als aus Russland importiert wurden. https://taz.de/Fossile-Politik/!5983492/
Tags
- Wintershall Dea
- Wingas
- Nina Katzemich
- Markus Wehner
- Klaus Mangold
- Uniper
- LobbyControl
- LNG expansion
- Calcasieu Pass 2
- Thomas Bareiß
- LNG
- Gazprom
- Nord Stream 2
- NEL
- Plaquemines
- TotalEnergies
- Béla Anđa
- Manuela Schwesig
- Timon Gremmels
- EnBW
- Ostsee-Pipeline-Anbindungsleitung
- Nordeuropäische Erdgasleitung
- natural gas
- Moskau Connection
- Venture Global
- Siegmar Gabriel
- Friedbert Pflüger
- Constantin Zerger
- Equinor
- Heino Wiese
- Reinhard Bingener
- Gerhard Schröder
- Matthias Peter
- Germany
- Evonik
- Strategic Minds
- Tim Kehler
- Oliver Hill
- Opal
- 2024-01-04
- Zukunft Gas
- Matthias Warnig
- Shell
- Deutsche Umwelthilfe
- Karsten Möring
Annotators
URL
-
- Sep 2021
-
stackoverflow.com stackoverflow.com
-
One good use for /dev/tty is if you're trying to call an editor in a pipeline (e.g., with xargs). Since the standard input of xargs is some list of files rather than your terminal, just doing, e.g., | xargs emacs will screw up your terminal. Instead you can use | xargs sh -c 'emacs "$@" </dev/tty' emacs to connect the editor to your terminal even though the input of xargs is coming from elsewhere.
-
- Apr 2021
-
expect.sourceforge.net expect.sourceforge.net
-
When you have a pipeline, unbuffer must be applied to each element except the last (since that doesn't have its output redirected). Example: unbuffer p1 | unbuffer p2 | unbuffer p3 | p4
-