スクリプトを早く終了するには、一時停止と休止状態を再度有効にするためにCtrl Cをキャプチャする方法を理解する必要があります。
Ctrl C キャプチャに関する他の議論を見てみましたが、役に立つものはありません。
ありがとうございます。
# TimerInTerminal.sh
# To prevent your Linux system from suspending or going into hibernation, you need to disable the following systemd targets:
# sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
# To re-enable the suspend and hibernation modes, run the command:
# sudo systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target
soundfile="/usr/share/sounds/My_Sounds/Electronic_Chime.wav"
# Stop computer from sleeping while timer is running
# prevent your Linux system from suspending or going into hibernation
sudo systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target
# This allows supend ?
#trap "echo marlin | sudo -S systemctl mask sleep.target suspend.target hibernate.target hybrid-sleep.target" INT EXIT
if [ $# -eq 1 ]
then
DURATION="$1"
else
read -r -p "Timer for how many minutes?( for fractional, use decimal notation , 0.5==30s, 1.25==75s etc) : " DURATION
read -r -p "Enter text to display at the end of the timer : " n1
fi
DURATION=$(echo "$DURATION * 60 / 1" | bc) # lets us deal with fractional inputs
START=$(date +%s) # only do this once (anchor's the time)
countdown () {
NOW=$(date +%s) # Get time now in seconds
DIF=$((NOW - START)) # Compute diff in seconds
ELAPSE=$((DURATION - DIF)) # Compute elapsed time in seconds
MINS=$((ELAPSE / 60)) # Convert to minutes... (dumps remainder from division)
SECS=$((ELAPSE - (MINS*60))) # ... and seconds
#banner "$MINS:$SECS"
echo "$MINS:$SECS"
sleep "$1"
}
while true
do
clear
countdown 0 # calc time remaining
if [ $MINS -le 0 ]
then
# Blink screen
while [ $SECS -gt 0 ]
do
clear # Flash on
#setterm -term linux -back red -fore white
countdown 0.5
clear # Flash off
#setterm -term linux -default
countdown 0.5
done # End for loop
setterm -term linux -default
clear
break # time has expired lets get out of here
else
countdown 1
fi
done
echo $n1
amixer -D pulse sset Master 30% > /dev/null 2>&1
# Play a sound
cvlc --play-and-exit "$soundfile" > /dev/null 2>&1
# To re-enable the suspend and hibernation modes, run the command:
echo marlin | sudo -S systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target
答え1
スクリプトの上部付近に以下を追加します。
trap cleanup SIGINT
cleanup () {
sudo systemctl unmask sleep.target suspend.target hibernate.target hybrid-sleep.target
}
marlin
再度有効にしたときにsystemctlにパイピングするのはわかりませんが、注釈付きトラップコマンドはfwiwmask
の代わりに使用しない限り機能し続けることができますunmask
。 forをキャプチャして+を押すと、コマンドが2回実行されることに注意するINT
価値がEXIT
あります。ctrlc
答え2
私は試したjesse_bの答えCtrl上記は+がCプロセスを一種のブロックするので私には働かなかったので、私がしなければならなかったのはトラップ呼び出しの前に関数を入れることだけでした。
#!/bin/bash
trp()
{
sudo airmon-ng stop wlp2s0mon
service NetworkManager start
}
trap trp SIGINT
sudo airmon-ng check kill
sudo airmon-ng start wlp2s0
sudo aireplay-ng --deauth 0 -a bb:bb:bb:bb:bb:bb -c cc:cc:cc:cc:cc:cc wlp2s0mon
したがって、ここでは、トラップが正常に使用される前に、トラップの前に関数を登録します。それ以外の場合、関数がこの行のaireplay-ng
後にある場合は、次のエラーが発生します。
Line 1: trp: command not found
気になる方のために申し上げると、これは私の甥がTikTokを離れて寝るように真夜中にWi-Fiをオフにするスクリプトです。