mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-01 22:57:17 -04:00
Former-commit-id: 8ecbbb6199864fda973e47605a10d737318f3993 Former-commit-id: eb625eded3f9518967ee9fa06201311e8571e394
7 lines
186 B
Bash
Executable File
7 lines
186 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 ./working/clipclear.py
|
|
fi
|