Fork me on GitHub

Organizations

@github @rss
4 results for bash
  • Schwierigkeitsgrad: Es kann etwas länger dauern
    In deze tutorial laat ik zien hoe je een Linux - desktop kunt bedienen via Bash. De volgende pakketten zijn nodig voor de Bash robot: x – + Terminal $ apt-get install xdotool xclip Daarna kunt u alle xdotool commando’s gebruiken, bijvoorbeeld: #!/bin/bash #mouse bewegen xdotool mousemove 100 200 #Mouse - Koordinaten erfassen xdotool getmouselocation #Mouse-klick xdotool click 1 Mouse-Klick auf Koordinaten xdotool mousemove 100 200 click 1 #usw.
    bash linux robot roboter linux Created Sun, 04 Apr 2021 00:00:00 +0000
  • Schwierigkeitsgrad: Es kann etwas länger dauern
    images/featured-image.jpg
    Als u een pagina-overzichtsafbeelding wilt maken van een PDF-bestand, dan bent u hier aan het juiste adres! Stap 1: Maak een werkmap Gebruik dit commando om een tijdelijke werkmap te maken: x – + Terminal $ mkdir /tmp/bilder Stap 2: Afzonderlijke pagina Het volgende commando maakt een afbeelding van elke PDF pagina: x – + Terminal $ convert 716023b632a9cbe6cad3ab368c202288.
    bash linux pdf postscript imagemagick Created Fri, 14 Feb 2020 00:00:00 +0000
  • Schwierigkeitsgrad: Es kann etwas länger dauern
    images/featured-image.jpg
    Als u een Raspberry wilt uitschakelen bij een bepaalde temperatuur, dan bent u op de juiste plaats. Ik heb een script dat de CPU temperatuur controleert via Crontab: #!/bin/sh # This script reads the Broadcom SoC temperature value and shuts down if it # exceeds a particular value. # 80ºC is the maximum allowed for a Raspberry Pi. # Get the reading from the sensor and strip the non-number parts SENSOR="`/opt/vc/bin/vcgencmd measure_temp | cut -d "=" -f2 | cut -d "'" -f1`" # -gt only deals with whole numbers, so round it.
    bash cpu cron linux maker Created Fri, 14 Feb 2020 00:00:00 +0000
  • Schwierigkeitsgrad: Nicht zu leicht und nicht zu schwer
    images/featured-image.png
    Als u een bash script in het Elgato Stream Deck wilt opnemen, heeft u eerst een bash script nodig. Stap 1: Maak een Bash script: Ik maak een bestand aan genaamd “say-hallo.sh” met de volgende inhoud: #!/bin/bash say "hallo" Stap 2: Rechten instellen Het volgende commando maakt het bestand uitvoerbaar: x – + Terminal $ chmod 755 say-hallo.sh Stap 3: neem Bash script op in het deck 3.
    bash elgato skript stream-deck Created Fri, 07 Feb 2020 00:00:00 +0000