9 lines
152 B
Bash
Executable File
9 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -d "./.passwords" ]]
|
|
then
|
|
rm -rf "./.passwords"
|
|
echo "Deleted passwords"
|
|
else
|
|
echo "There were no passwords to delete"
|
|
fi |