Skip to content

Commit 5e2ac1d

Browse files
changes
1 parent 46001e0 commit 5e2ac1d

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
11
# bash-scripts
2-
> A repository I created to store all the bash scripts I've done. May get bigger with time!
2+
3+
A repository I created to store all the bash scripts I've done. May get bigger with time!
4+
5+
* **easy-manager :** A simple script that I did to learn how I could use commands with conditions, it can create simple files, search (on the current directory), and even has an option where you install certain programs! (Although I need to find a way that make it capable of do it regardless distro)
6+
7+
> Here's a example with it running:
8+
9+
10+
11+
12+
13+
![alt](easy/screen-recording.gif)
14+
15+
* **net-fix :** Something I did due a problem I would sometimes get when using windscribe and the internet wouldn't work properly due to the program. So I did this little fix and it works fine!
16+
17+
18+
19+

easy/screen-recording.gif

1.16 MB
Loading

image-viewer/img-viewer.sh

Whitespace-only changes.

simple-scripts/net-fix.sh

100644100755
+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ printf "%s\n\n" "Starting quick net-fix"
1313
sleep 0.1
1414
printf "%s\n\n" "Removing resolv.conf from /etc/resolv.conf"
1515

16-
sudo rm /etc/resolv.conf
16+
sudo rm -r /etc/resolv.conf
1717

1818
sleep 0.1
1919
printf "%s\n\n" "Copying resolv.conf from /var/run/NetworkManager/resolv.conf to /etc/resolv.conf"

0 commit comments

Comments
 (0)