Skip to content
Snippets Groups Projects
Commit b5bd764b authored by Gilquin's avatar Gilquin
Browse files

fix: correct input field separator in awk exercise

parent 7109a76d
Branches
Tags
1 merge request!2fix: correct some errors
......@@ -176,7 +176,7 @@ Modify this command to only get a list of sequence names in a fasta file
<details><summary>Solution</summary>
<p>
```sh
awk -vOFS='' '{print $1 "\n";}' two_column_sample_tab.txt > seq_name.txt
awk -vFS='\t' -vOFS='' '{print $1 "\n";}' two_column_sample_tab.txt > seq_name.txt
```
</p>
</details>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment