- 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
- NGO: Friends of the Earth
- expert: Channa Samkalden
- project: EACOP
- TotalEnergies
- expert: Donald Pöls
- mode: legal action
- actor: ENI
- region: Niger delta
- NGO: Greenpeace
- project: Mining Impact
- actor: OMV
- actor: Glencore
- actor: Equinor
- actor: Shell
- actor: Statoil
- NGO: Milieudefensie
- project: East African Crude Oil Pipeline
- actor: Lundin Energy
- expert: Lisa Göldner
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
- Equinor
- Nord Stream 2
- LNG
- Manuela Schwesig
- Venture Global
- Nordeuropäische Erdgasleitung
- Constantin Zerger
- NEL
- Shell
- Matthias Warnig
- Gazprom
- Reinhard Bingener
- EnBW
- Nina Katzemich
- Germany
- Oliver Hill
- Friedbert Pflüger
- Gerhard Schröder
- Evonik
- Markus Wehner
- Klaus Mangold
- Wingas
- TotalEnergies
- Thomas Bareiß
- Calcasieu Pass 2
- natural gas
- Tim Kehler
- Timon Gremmels
- Plaquemines
- Karsten Möring
- Béla Anđa
- Zukunft Gas
- Siegmar Gabriel
- Ostsee-Pipeline-Anbindungsleitung
- Wintershall Dea
- Strategic Minds
- Deutsche Umwelthilfe
- LNG expansion
- Moskau Connection
- Heino Wiese
- Matthias Peter
- LobbyControl
- 2024-01-04
- Uniper
- Opal
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
-