Sha256: 7be062bce9a53769c748ed9a9908b94961dfa0adbf2105784681332a8500135b
Contents?: true
Size: 260 Bytes
Versions: 26
Compression:
Stored size: 260 Bytes
Contents
#!/usr/bin/env bash path=`ix join '/'` mkdir -p $path first=`echo $path | ix split '/' | head -1` tree $first if [ "$first" == "/" ]; then echo Cant delete root. exit 1 else command="rm -rf $first" echo Delete command: $command $command fi
Version data entries
26 entries across 26 versions & 1 rubygems