Isso não é muito complicado:
- Copie o script abaixo em um arquivo vazio, salve-o como
change_case
(sem extensão) em~/bin
(talvez você tenha que criar o diretório). Torne o script executável - Talvez seja necessário efetuar logout / in, especialmente se o diretório ainda não existir (ou, como alternativa, executar:
source ~/.profile
) -
Abra uma janela de terminal, teste-a executando o comando:
change_case custom this is a test case to see if all in the script works
saída:
This is a Test Case to See If All in the Script Works
Eu testei com todas as opções da sua pergunta (superior, inferior, sentença, personalizada) e todas devem funcionar como seu exemplo.
O script
#!/usr/bin/env python3
import sys
string = sys.argv[2:]
opt = sys.argv[1]
excluded = ["in","by","with","of","a","to","is","and","the"]
if opt == "lower":
print((" ").join(string).lower())
elif opt == "upper":
print((" ").join(string).upper())
elif opt == "sentence":
print((" ").join(string).title())
elif opt == "custom":
line = []
for s in string:
s = s.title() if not s in excluded else s
line.append(s)
print((" ").join(line))