Eine aufbereitete Darstellung der Quelle

 
     
 
 
Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  jar-args.sh

  Sprache: Shell
 

#!/bin/bash -e

# Copyright 2017 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

# Script that takes a list of files on stdin and converts it to arguments to jar on stdout
# Usage:
#        find $dir -type f | sort | jar-args.sh $dir > jar_args.txt
#        jar cf out.jar @jar_args.txt

case $(uname) in
  Linux)
    extended_re=-r
    ;;
  Darwin)
    extended_re=-E
    ;;
  *) echo "unknown OS:" $(uname) >&2 && exit 1;;
esac

if [ "$1" == "--test" ]; then
  in=$(mktemp)
  expected=$(mktemp)
  out=$(mktemp)
  cat > $in <<EOF
a
a/b
a/b/'
a/b/"
a/b/\\
a/b/#
a/b/a
EOF
  cat > $expected <<EOF

-C 'a' 'b'
-C 'a' 'b/\\''
-C 'a' 'b/"'
-C 'a' 'b/\\\\'
-C 'a' 'b/#'
-C 'a' 'b/a'
EOF
  cat $in | $0 a > $out

  if cmp $out $expected; then
    status=0
    echo "PASS"
  else
    status=1
    echo "FAIL"
    echo "got:"
    cat $out
    echo "expected:"
    cat $expected
  fi
  rm -f $in $expected $out
  exit $status
fi

# In order, the regexps:
#   - Strip $1/ from the beginning of each line, and everything from lines that just have $1
#   - Escape single and double quotes, '#', ' ', and '\'
#   - Prefix each non-blank line with -C $1
sed ${extended_re} \
  -e"s,^$1(/|\$),," \
  -e"s,(['\\]),\\\\\1,g" \
  -e"s,^(.+),-C '$1' '\1',"

Messung V0.5 in Prozent
C=65 H=93 G=80

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-28) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik