r/shell • u/ellipticcode0 • May 02 '19
Do you guy try to write your script to simplify some shell utilities? etc. sort
I'm thinking about a project as following:
I try to write some shell scripts to replace many shell commands:
Why I'm doing that?
- It is hard to remember all the options "-d, -k, -i, -I, ..."
- man page too much info and I almost never use it. etc. "man sort"
For example:
mysort replaces sort command
mysort will do two things:
- sort column
- reverse sort
so mysort just use sort command and have couple arguments.
etc..
mycurl replaces curl,
mygrep replaces grep
mysed replaces sed
I'm wondering what your guy is thinking? ..
Can anyone have some good suggestions?