Sophie

Sophie

distrib > Mandriva > current > x86_64 > by-pkgid > b611ea73723a8287cce23d3124a6eeea > files > 170

howto-sgml-ko-2006-5mdv2010.0.noarch.rpm

#!/bin/bash
# 'shift' ·Î ¸ðµç À§Ä¡ ¸Å°³º¯¼ö¸¦ ó¸®Çϱâ.

#  ÀÌ ½ºÅ©¸³Æ®ÀÇ À̸§À» shft µîÀÇ À̸§À¸·Î ¹Ù²Ù°í
#+ ./shft a b c def 23 skidoo
#+ °°Àº ½ÄÀ¸·Î ¸î °³ÀÇ ÀÎÀÚ¸¦ ³Ñ°Ü¼­ ºÒ·¯ º¸¼¼¿ä.

until [ -z "$1" ]  # ¸ðµç ¸Å°³º¯¼ö¸¦ ´Ù ¾µ ¶§±îÁö...
do
  echo -n "$1 "
  shift
done

echo   # ¿©ºÐÀÇ ÇÑ ÁÙ.

exit 0