Skip to content

Commit

Permalink
Create install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKayala committed Apr 20, 2024
1 parent c7d97d5 commit e8b7f8a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Rename and move JaelesFuzzer.sh file to /usr/bin/JaelesFuzzer
sudo mv JaelesFuzzer.sh /usr/bin/jf

# Make the JaelesFuzzer file executable
sudo chmod u+x /usr/bin/jf

# Remove the JaelesFuzzer folder from the home directory
if [ -d "$home_dir/JaelesFuzzer" ]; then
echo "Removing JaelesFuzzer folder..."
rm -r "$home_dir/JaelesFuzzer"
fi

echo "JaelesFuzzer has been installed successfully! Now Enter the command 'jf' to run the tool."

0 comments on commit e8b7f8a

Please sign in to comment.