<div dir="ltr">Isn't PPID your bash process?<div><br></div><div>Try</div><div><br></div><div>#!/bin/bash</div><div>sudo smartctl -t short /dev/sda &<br></div>process_id=$!<br>wait $process_id<br>sudo smartctl -l selftest /dev/sda | grep "# 1"</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Jan 6, 2022 at 1:07 PM Charles M <<a href="mailto:chaslinux@gmail.com">chaslinux@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">My bash-foo is very rusty. I'm trying to run smartmontools to check a<br>
drive using the short test option (which usually takes less than 2<br>
minutes to complete). After the command is finished I want to then<br>
probe for the results of the test. Here's my script:<br>
<br>
#!/bin/bash<br>
sudo smartctl -t short /dev/sda &<br>
while ps -p $PPID > /dev/null; do sleep 1; done;<br>
sudo smartctl -l selftest /dev/sda | grep "# 1"<br>
<br>
This seems to hang after smartctl starts the short test. I've waited<br>
well after the time smartctl should finish and it doesn't seem to<br>
finish and run the second smartctl command.<br>
<br>
Thanks,<br>
<br>
Charles<br>
<br>
_______________________________________________<br>
kwlug-disc mailing list<br>
<a href="mailto:kwlug-disc@kwlug.org" target="_blank">kwlug-disc@kwlug.org</a><br>
<a href="https://kwlug.org/mailman/listinfo/kwlug-disc_kwlug.org" rel="noreferrer" target="_blank">https://kwlug.org/mailman/listinfo/kwlug-disc_kwlug.org</a><br>
</blockquote></div>