3 lines
59 B
Bash
3 lines
59 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
[ -e $1 ] && ls -l $1 || echo "file not exist"
|