So I know this might not be a secure method of encryption or obfuscation and likely not the recommended way either but I was wondering if it was remotely feasible or practical to encode little secrets on my own private PC by taking a string, like a password for example, and coming up with an encoding sequence using very basic encoding methods using bash scripts.
For example
echo Password | base64 | base85 | base64 | hex | base85
PENdTilAbCVZPUByNSgr
and then upon pulling that password from my little txt key pair database use the exact opposite decoding sequence to end up back at the original password.
Is this a practical form of obfuscation and does it actually provide any security at all? Its not like I need super good security for storing words on my pc that only I use but this got me thinking.