mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-06 00:57:14 -04:00
Former-commit-id: 4bace4d00eb1fcfd9751c23c7d57c7403e0defe6 Former-commit-id: b1fcdbaccd5058fd5fc5a6ea32c7574afd6a3b9a
12 lines
405 B
Bash
Executable File
12 lines
405 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$1" = 'TABS' ]; then
|
|
unexpand -t 4 working/sshyp.py > working/sshyp.py.new
|
|
unexpand -t 4 working/sshync.py > working/sshync.py.new
|
|
else
|
|
expand -t 4 working/sshyp.py > working/sshyp.py.new
|
|
expand -t 4 working/sshync.py > working/sshync.py.new
|
|
fi
|
|
mv working/sshyp.py.new working/sshyp.py
|
|
mv working/sshync.py.new working/sshync.py
|
|
chmod +x working/sshyp.py working/sshync.py
|