3 lines
55 B
Bash
3 lines
55 B
Bash
|
#!/bin/bash
|
||
|
[ $1 ] && stat --format '%a' $1 || exit 1;
|