]> git.phdru.name Git - dotfiles.git/commitdiff
.gitconfig: use cut instead or colrm
authorOleg Broytman <phd@phdru.name>
Mon, 27 Feb 2017 19:58:09 +0000 (22:58 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 27 Feb 2017 19:58:09 +0000 (22:58 +0300)
.gitconfig

index 74673ebc1a69274ad78e0ebb1ec5a508f9675d03..6e59db2c11e3af9e26506a73641d48a26d006260 100644 (file)
@@ -95,7 +95,7 @@
 
   ssb = status --short --branch
 
-  aliases = "!git config --get-regexp '^alias\\.' | colrm 1 6 | sed 's/ / = /'"
+  aliases = "!git config --get-regexp '^alias\\.' | cut -c7- | sed 's/ / = /'"
 
   add-alias = "!f() { [ $# = 3 ] && git config $1 alias.\"$2\" \"$3\" && return 0 || echo \"Usage: git add-(local|global)-alias <new alias> <original command>\" >&2 && return 1; }; f"
   add-global-alias = "!exec git add-alias --global"