Quantcast
Channel: Tiny Core Linux
Viewing all articles
Browse latest Browse all 18910

Re: Help Requested - remove superfluous directory names from file list

$
0
0
I've adjusted my script so it won't accidentally drop lines we need.  :)
awk '{print $1}' should drop any "link redirections".

[code]
#!/bin/sh
OUTPUT_DIR=/tmp/tcz-list
mkdir -p $OUTPUT_DIR
strip_path() {
  awk 'BEGIN {FS="\n";RS=""} {
    for (...

Viewing all articles
Browse latest Browse all 18910

Trending Articles