Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add uniq, join and sort simple shell commands #14335

Closed
XVilka opened this issue Jun 17, 2019 · 2 comments
Closed

Add uniq, join and sort simple shell commands #14335

XVilka opened this issue Jun 17, 2019 · 2 comments

Comments

@XVilka
Copy link
Contributor

XVilka commented Jun 17, 2019

For better scripting inside radare2 shell:

$ cat authors.txt
Chaucer
Chaucer
Orwell
Larkin
Larkin
$ uniq authors.txt
Chaucer
Orwell
Larkin
$ cat foodtypes.txt
1 Protein
2 Carbohydrate
3 Fat

$ cat foods.txt
1 Cheese 
2 Potato
3 Butter

$ join foodtypes foods.txt
1 Protein Cheese
2 Carbohydrate Potato
3 Fat Butter
@radare
Copy link
Collaborator

radare commented Jun 17, 2019 via email

@radare
Copy link
Collaborator

radare commented Jun 17, 2019

Also, we need sort

@XVilka XVilka changed the title Add uniq and join simple shell commands Add uniq, join and sort simple shell commands Jun 19, 2019
@deepakchethan deepakchethan moved this from To do to In progress in Console Interface Improvements Jun 19, 2019
@deepakchethan deepakchethan moved this from In progress to Review in progress in Console Interface Improvements Jun 20, 2019
@radare radare closed this as completed in 2da973e Jun 20, 2019
Console Interface Improvements automation moved this from Review in progress to Done Jun 20, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

No branches or pull requests

2 participants