Tuesday, September 12, 2023

Qualcomm Snapdragon

 

&A

How can I get started with development today?

You can find more information on the development kit here: https://www.qualcomm.com/developer/windows-on-snapdragon#overview You can find documentation, tools, support, links to purchase dev kits and much more on this page to help you get started

What kind of support does Qualcomm provide with development?

You can find documentation to help you get started here: https://docs.qualcomm.com/bundle/publicresource/topics/80-62010-1/Overview.html?product=Windows%20on%20Snapdragon You can also find some FAQ's, course on Qualcomm Academy and join the discord channel. https://www.qualcomm.com/developer/windows-on-snapdragon#support Qualcomm engineers and SME's are standing by to answer any question that you man have.

Wednesday, September 6, 2023

detect file change in bash redhat

#!/bin/sh

old=$(tail -l $1)

while true
do
  sleep $2
  new=$(tail -l $1)
  if [ "$old" != "$new" ]
  then
     echo "file changed"
     old=$new
  else
     echo "file not changed"
  fi
done

--------------------------- this is to remove all the \r character from the file ---------------------

sed -i 's/\r$//' loop.sh

 --------------------------- run jboss eap service ------------------

[root@dcyfolywb30052 ~]# systemctl daemon-reload

[root@dcyfolywb30052 ~]# systemctl stop jboss-eap-rhel

[root@dcyfolywb30052 ~]# systemctl start jboss-eap-rhel