浏览代码

bin: update cdtemp

Moves the folder to Workspace/temp instead and adds a prune command for
clearing out empty directories.
Thomas Dy 1 年之前
父节点
当前提交
8bf7ea2a41
共有 1 个文件被更改,包括 11 次插入4 次删除
  1. 11 4
      .local/bin/cdtemp

+ 11 - 4
.local/bin/cdtemp

@@ -1,12 +1,19 @@
 #!/usr/bin/env bash
 
+TEMPSPACE=$HOME/Workspace/temp
+
 set -euo pipefail
 
-if [ "${1:-}" = "last" ]; then
-  dir=$(ls "$HOME/Tempspace" | tail -n 1)
-  cd "$HOME/Tempspace/$dir"
+cmd="${1:-}"
+
+if [ "$cmd" = "last" ]; then
+  dir=$(find "$TEMPSPACE" -type d -mindepth 1 -maxdepth 1 | sort | tail -n 1)
+  cd "$dir"
+elif [ "$cmd" = "prune" ]; then
+  echo "Deleting empty directories"
+  find "$TEMPSPACE" -type d -mindepth 1 -maxdepth 1 -empty -delete -print
 else
-  dir="$HOME/Tempspace/$(date +%s)"
+  dir="$TEMPSPACE/$(date +%s)"
   mkdir "$dir"
   cd "$dir"
 fi