Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pkill man page #427

Merged
merged 4 commits into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/play_vk
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ trap 'kill -s KILL $PID' TERM INT
# mute mic
#amixer -c 0 set Mic mute -q

# play file on the default sound device in background, so signals can be catch
# play file on the default sound device in background, so signals can be caught
# by the 'trap' instruction above

# SoX play utility syntax
Expand Down
2 changes: 1 addition & 1 deletion scripts/soundlog
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ trap 'kill -s INT $PID' TERM USR1
while [ -f $HOME/.VRlock ]
do
# store recorded files in actual directory
filename=`eval date +%d%H%M`".au"
filename=$(eval date +%d%H%M)".au"
if test -f $filename
then
sleep 10
Expand Down
2 changes: 1 addition & 1 deletion tlf.1.in
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ shown):
.
.P
.EX
/usr/bin/pkill \-f rec
/usr/bin/pkill \-x rec
.EE
.
.P
Expand Down
Loading