Skip to content

Instantly share code, notes, and snippets.

@YumaInaura
Last active December 9, 2015 09:33
Show Gist options
  • Select an option

  • Save YumaInaura/8be937a4771e3f4cfbaa to your computer and use it in GitHub Desktop.

Select an option

Save YumaInaura/8be937a4771e3f4cfbaa to your computer and use it in GitHub Desktop.
bash | 正規表現で連続したスペースを削除する ref: http://qiita.com/Yinaura/items/aa90473cb4a876e4988f
abc
abc
abc
abc
echo 'aabc' | sed 's/a+//g'
echo 'aabc' | sed 's/a*//g'
abc
abc
abc
abc
#!/bin/bash
echo ' abc' | sed -E 's/\s+//g'
echo ' abc' | sed -E 's/\s*//g'
echo ' abc' | sed -E 's/ +//g'
echo ' abc' | sed -E 's/ *//g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment