6 lines
130 B
Bash
Executable file
6 lines
130 B
Bash
Executable file
#!/bin/sh
|
|
for f in profile.sh profile.xrsh profile; do
|
|
echo -e "\r[⏵] file: /etc/$f"
|
|
test -f /etc/$f || exit 1
|
|
done
|
|
exit 0
|