Skip to content

Commit 7f4ac59

Browse files
committed
Update
1 parent da034f3 commit 7f4ac59

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

documents/documents-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
# Start Bash (Unix Shell)
6-
bash
6+
[ -z "$BASH" ] && exec bash
77

88

99
# Install ghostscript

documents/file-management/file-management.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
# Start Bash (Unix Shell)
6-
bash
6+
[ -z "$BASH" ] && exec bash
77

88

99
# Install rnr

photos/photo-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
# Start Bash (Unix Shell)
13-
bash
13+
[ -z "$BASH" ] && exec bash
1414

1515

1616
# Install ExifTool

sports/gps-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
# Start Bash (Unix Shell)
6-
bash
6+
[ -z "$BASH" ] && exec bash
77

88

99
# Install gpsbabel

technology/git/git-tools.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Git Tools
2-
# Last update: 2025-12-16
2+
# Last update: 2026-01-02
33

44

55
# Start Bash (Unix Shell)
@@ -74,7 +74,7 @@ pre-commit run --all-files
7474

7575
## Python requirements.txt file
7676
# python -m pip install pipreqs
77-
if find . -type f -name "*.py" | grep -q "/."; then
77+
if find . -type f -name "*.py" | grep -q .; then
7878
pipreqs --encoding utf-8 --force "./"
7979

8080
# Check if "janitor" is in requirements.txt and replace it with pyjanitor

technology/microsoft/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ python -m pip_review --local --auto
1717

1818
```.bash
1919
# Start Windows Subsystem for Linux (WSL)
20-
bash
20+
[ -z "$BASH" ] && exec bash
2121

2222
# Update package lists, upgrade installed packages, remove unused packages, and clean cache
2323
sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt clean

technology/microsoft/windows/windows-subsystem-for-linux-packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
# Start Windows Subsystem for Linux (WSL)
6-
bash
6+
[ -z "$BASH" ] && exec bash
77

88

99
# Update package lists, upgrade installed packages, remove unused packages, and clean cache

technology/server/server-backup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
# Start Bash (Unix Shell)
6-
bash
6+
[ -z "$BASH" ] && exec bash
77

88

99
# Install rsync

videos/video-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
# Start Bash (Unix Shell)
6-
bash
6+
[ -z "$BASH" ] && exec bash
77

88

99
# Install FFmpeg

0 commit comments

Comments
 (0)