J'utilise Ubuntu 12.04. Je n'ai aucun privilège root ou sudo car il s'agit d'une machine d'entreprise.
Existe-t-il, dans une installation normale d'Ubuntu 12.04, un programme de terminal que je peux utiliser pour transformer un code source laid et mal formé qui n'a aucune indentation en un joli code?
Encore une fois, je ne peux installer aucun paquet, j'ai donc besoin d'un qui est déjà fourni avec Ubuntu, si une telle chose existe.
Par exemple:
int main()
{
test(1);
another_function(1);
}
Et puis convertissez-le en:
int main()
{
test(1);
another_function(1);
}