Skip to content

Instantly share code, notes, and snippets.

@klapauciuz
Last active June 27, 2024 16:51
Show Gist options
  • Save klapauciuz/7e0632efea41e9bbf7a6e56892a81c9b to your computer and use it in GitHub Desktop.
Save klapauciuz/7e0632efea41e9bbf7a6e56892a81c9b to your computer and use it in GitHub Desktop.
some bash hints for lists manipulation
# get first column(from file with ':' delimeter) and write into output.csv
cut -f1 -d':' input.csv >> output.csv
# get from first up to five column from dataset.csv
cut -f1-5 -d',' dataset.csv
# regex for json-type html parsing
\:(?:[^\:]*)@\C+
# get first column from output.csv
awk -F, '!seen[$1]++' output.csv >> uuu.csv
# get lines starts from number 2261627 to 2402947p from output.csv file
sed -n 2261627,2402947p output.csv
# download file from ssh server
scp root@127.0.0.1:/root/project/output.csv /Users/username/Desktop/project/output.csv
# sort and filter only unique lines from ids.txt
sort -u ids.txt >> uniq_ids.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment