create a lock file in bash to avoid duplicate execution

六眼飞鱼酱① 提交于 2019-12-01 01:13:55
#!/bin/sh

(
  # Wait for lock on /tmp/lock

  flock -x -w 10 200 || exit 127 # you can use or not use -w

  #your stuff here

) 200> /tmp/lock

check man page flock.

This is the tool for you. And it comes with example in man page :)

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!