Re: How to reboot?

2024-01-15 Thread hw
On Sat, 2024-01-13 at 22:53 +, Tim Lewis via beginners wrote: > To send email to text for the main carriers in the US: > AT&T > Compose a new email and enter the recipient's 10-digit wireless number, > followed by @txt.att.net. > T-Mobile > Write a new email message. > Enter the recipients T-M

Using UNIX domain sockets

2024-01-15 Thread listas.correo
Hi, I am trying to control mpv player using unix sockets but it looks like that perl is unable to send the string correctly. I run the following command: mpv --input-ipc-server=~/mpv.sock --idle=yes -v -v If I sent the string using system commands: $ echo '{"command":["stop"]}' | socat - ~/m

RE: Using UNIX domain sockets

2024-01-15 Thread Claude Brown via beginners
The first difference I can see is that "echo" adds a newline, but your perl does not. Try adding the newline: my $cmd='{"command":["stop"]}' . "\n"; This is a wild guess! -Original Message- From: listas.correo via beginners Sent: Tuesday, January 16, 2024 6:26 AM To: beginners@perl.o