Skip to content

schraderL/oneliners

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

oneliners

##Initiate new git.

echo "# oneliners" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/schraderL/oneliners.git
git push -u origin master

##Loop over file in bash

while read p; do
  echo "$p"
done < file

##Loop over column in bash

for i in $(cut -f 3 file.tsv|sed 1d); do
  echo $i
done

##AWK tab out

 awk -v OFS='\t'

Display tabs as proper columns

column -t
column -t -s $'\t'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors