Skip to content

bytebutcher/iter.sh

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

iter.sh

iter.sh is a flexible and powerful shell script designed to simplify the processing of structured text files in a UNIX-like environment.

Usage

iter.sh [-f file] [-d delimiter] [-c column_names] <command>

Examples

# Pipe into iter and print every line of a csv file
cat data.txt | iter.sh -d ',' -c 'name,namespace' 'echo $name is in $namespace'
# Print every line of a csv file
iter.sh -f data.txt -d ',' -c 'name,namespace' 'echo $name is in $namespace'
# Print every line of a text file
iter.sh -f data.txt 'echo $line'

About

Flexible and powerful shell script designed to simplify the processing of structured text files in a UNIX-like environment.

Topics

Resources

License

Stars

Watchers

Forks

Languages