Files
2026-08-07 15:56:42 +09:00

26 lines
167 B
Bash

#! /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