
expand
List of commands for expand:
-
expand:tldr:1b402 expand: Use a comma separated list of explicit tab positions.$ expand -t=${1,4,6}try on your machineexplain this command
-
expand:tldr:31407 expand: Convert tabs to spaces, reading from standard input.$ expandtry on your machineexplain this command
-
expand:tldr:3d74e expand: Have tabs a certain number of characters apart, not 8.$ expand -t=${number} ${filename}try on your machineexplain this command
-
expand:tldr:63532 expand: Ignore the directory structure when uncompressing, and add them to a single directory.$ expand ${path\to\file-cab} ${path\to\directory} -itry on your machineexplain this command
-
expand:tldr:73857 expand: Uncompress a specific file from a Cabinet file.$ expand ${path\to\file-cab} ${path\to\directory} -f:${path\to\file}try on your machineexplain this command
-
expand:tldr:77354 expand: Uncompress a single-file Cabinet file to the specified directory.$ expand ${path\to\file-cab} ${path\to\directory}try on your machineexplain this command
-
expand:tldr:a9af6 expand: Convert tabs in each file to spaces, writing to standard output.$ expand ${filename}try on your machineexplain this command
-
expand:tldr:be922 expand: Do not convert tabs after non blanks.$ expand -i ${filename}try on your machineexplain this command
-
expand:tldr:cbaad expand: Display the list of files in a source Cabinet file.$ expand ${path\to\file-cab} ${path\to\directory} -dtry on your machineexplain this command
-
expand:tldr:cf62d expand: Uncompress all files from the Cabinet file.$ expand ${path\to\file-cab} ${path\to\directory} -f:*try on your machineexplain this command