adds the current folder to $PATH (through .profile)

This commit is contained in:
tcsenpai 2024-03-20 13:01:38 +01:00
parent 6dcf7a949b
commit f65b9cf82f

7
bin/pathis Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
THIS=$(pwd)
echo "export PATH=\$PATH:$THIS" >> "$HOME/.profile"
echo $PATH
echo "Done!"