Skip to content

Instantly share code, notes, and snippets.

View xialu4820723's full-sized avatar
😉

lu.xia xialu4820723

😉
  • Bytedance
  • Shanghai, China
View GitHub Profile
@xialu4820723
xialu4820723 / bash_util.sh
Last active April 25, 2023 14:46
util snippet
# csv sort and remove column
sort -h --field-separator=',' 374160.csv | cut -d, -f6 --complement | less
# shell print for download csv file
sort -h --field-separator=',' 1532881.csv | cut -d, -f6 --complement | perl -pe 's/((?<=,)|(?<=^)),/ ,/g;' | column -t -s, | less -S
# run funtion in remote machine
ssh ${machine} "$(typeset -f function_name); function_name"
# kill process