diff options
author | Starfall <us@starfall.systems> | 2024-02-26 12:04:13 -0600 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2024-02-26 12:04:13 -0600 |
commit | 0319df4b22b5dc08329a6eb9d633608cf69b3602 (patch) | |
tree | 613fca8fb94b825655288946e6fb2a3f40dc0649 /.config | |
parent | d59a3c564460529b48a39bde870aa9c6b5879de7 (diff) |
zsh: add oflag=direct,sync to dd alias
Diffstat (limited to '.config')
-rw-r--r-- | .config/zsh/utils.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/zsh/utils.zsh b/.config/zsh/utils.zsh index adec897..4275aa0 100644 --- a/.config/zsh/utils.zsh +++ b/.config/zsh/utils.zsh @@ -43,7 +43,7 @@ fi alias mkdir='mkdir -p' # dd -alias dd="dd status=progress" +alias dd="dd status=progress oflag=direct,sync" # gpg if has gpg2; then |