mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-03 23:57:17 -04:00
Former-commit-id: f5d19c55405790060136af4f2a012987ce88d5f2 Former-commit-id: 69aef95294b038c405d95ad3aa37c0a1991a9f8a
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.10/' ./*.py
|
|
else
|
|
sed -i '1 s/.*/#!\/bin\/env\ python3.10/' ./working/sshyp.py
|
|
fi
|