Skip to content

Instantly share code, notes, and snippets.

@akilab
Created November 19, 2013 06:02
Show Gist options
  • Select an option

  • Save akilab/7540980 to your computer and use it in GitHub Desktop.

Select an option

Save akilab/7540980 to your computer and use it in GitHub Desktop.
2分間アクセスが無いファイルを削除したかっただけ
#!/bin/sh
DIR="/var/tmp/"
FILE="noaccess.dat"
CMD="find ${DIR} -name ${FILE} -cmin 2 -delete"
if [ -f "${DIR}${FILE}" ];then
$CMD
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment