initial commit

This commit is contained in:
2026-08-07 15:56:42 +09:00
commit 91ad25aca9
1012 changed files with 159314 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#! /bin/bash
path=$1
if [ -r $path ]
then
echo 1
else
echo 0
fi
if [ -w $path ]
then
echo 1
else
echo 0
fi
if [ -x $path ]
then
echo 1
else
echo 0
fi