mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-02 15:17:18 -04:00
Former-commit-id: cc3ae472b67be63d960b4993c355f9d5acf7d899 Former-commit-id: 8d758713964c081c6dbb56899f2b84e51d25eac0
7 lines
163 B
Bash
Executable File
7 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$1" = 'PREP' ]; then
|
|
sed -i '1 s/.*/#!\/bin\/env\ python3.11/' ./*.py
|
|
else
|
|
sed -i '1 s/.*/#!\/bin\/env\ python3.11/' ./working/sshyp.py
|
|
fi
|