Skip to content

Instantly share code, notes, and snippets.

@liubin95
Created February 8, 2022 06:41
Show Gist options
  • Select an option

  • Save liubin95/c8e9170fd9444b5fb968e6290efa4d71 to your computer and use it in GitHub Desktop.

Select an option

Save liubin95/c8e9170fd9444b5fb968e6290efa4d71 to your computer and use it in GitHub Desktop.
常用的命令汇总
for i in `ls | grep sql`; do
  echo $i;
  # 将a替换成b
  sed -i 's/a/b/g' $i
  done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment