Advertisement
orborbson

quickedit_termux

Mar 29th, 2025 (edited)
516
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.59 KB | Source Code | 0 0
  1. #!/data/data/com.termux/files/usr/bin/sh
  2.  
  3. if [ -z "${1}" ]; then echo "[BŁĄD]: podaj nazwę pliku"; exit 1; fi
  4. FILE="`realpath -q ${1}`"
  5. if [ ! -f "${FILE}" ]; then touch "${FILE}"; IS_NEW="true"; fi
  6.  
  7. APK="com.rhmsoft.edit"
  8.  
  9. STAT_A=`stat -c %Y "${FILE}"`
  10. if am start -n "${APK}/${APK}.activity.MainActivity" -d "file://${FILE}" > /dev/null 2>&1; then
  11.     sudo sh -c "while pidof -s -q ${APK}; do sleep 2; done"
  12. else
  13.     echo "[BŁĄD]: nie można uruchomić \"${APK}\""
  14. fi
  15. STAT_B=`stat -c %Y "${FILE}"`
  16.  
  17. if [ -n "${IS_NEW}" ] && [ "${STAT_A}" -eq "${STAT_B}" ]; then rm -f "${FILE}"; fi
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement