How To Use select command in bashscript
Imagine that you are creating a script that lets user selects one file out of many files in directory. well this can be achived in different ways
The Hard Way
#!/bin/bash
content=$(dir);
str="`echo $content`";
read -r -a list <<<${str};
read -p "Ent...
codeboard.hashnode.dev1 min read