Project Description:-
Passenger can make his /her Reservation Easily. It basically a different form of execution of online transactions in which the customer can reserve for tickets and can pay online for their ticket conformation . A customer canal so view his/ her conformation using login name and password provided during reservation process, which is for security . If customer needed to cancel his/her reservation due to any reason, he/she may easily cancel out reservation with charges applied.
https://drive.google.com/file/d/1KPvi2j2xJUrG1W6DIz4RSFyWyjglANNc/view?usp=sharing
1111
#!/bin/bash
# Prompt user for filename
echo "Enter the filename:"
read filename
# Find the file in home directory/subtree
result=$(find $HOME -type f -name "$filename")
# Check if the file exists
if [ -n "$result" ]; then
echo "File found!"
echo "Full path to the file: $result"
# Check if the user has the right to modify the file contents
if [ -w "$result" ]; then
echo "You can modify content."
else
echo "It is not reasonably possible to modify the content."
fi
else
echo "The file '$filename' probably not available in this system."
fi
|