This is a new mostly bash-based implementation of a minimal and immanent AO server. No database, user accounts are created directly in the OS.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
316 B

1 year ago
#!/bin/sh
# usage: ./viewPost.sh --filename=<filename>
1 year ago
# Parse the arguments
for arg in "$@"
do
case $arg in
--filename=*)
1 year ago
file="${arg#*=}"
;;
esac
done
# Check if the file exists and is a regular file
if [ -f "$file" ]; then
cat "$file"
else
echo "File does not exist"
fi