summaryrefslogtreecommitdiff
path: root/static/v10/man1/shift.1
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man1/shift.1
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man1/shift.1')
-rw-r--r--static/v10/man1/shift.138
1 files changed, 0 insertions, 38 deletions
diff --git a/static/v10/man1/shift.1 b/static/v10/man1/shift.1
deleted file mode 100644
index fbf2e145..00000000
--- a/static/v10/man1/shift.1
+++ /dev/null
@@ -1,38 +0,0 @@
-.th SHIFT I 8/21/73
-.sh NAME
-shift \*- adjust Shell arguments
-.sh SYNOPSIS
-.bd shift
-.sh DESCRIPTION
-.it Shift
-is used in Shell command files to shift the
-argument list left by 1,
-so that old
-.bd $2
-can now be referred to by
-.bd $1
-and so forth.
-.it Shift
-is useful to iterate over several arguments
-to a command file.
-For example, the command file
-.s3
-.lp +5 0
-: loop
-.br
-if $1x = x exit
-.br
-pr \*-3 $1
-.br
-shift
-.br
-goto loop
-.s3
-.i0
-prints each of its arguments in 3-column format.
-.s3
-.it Shift
-is executed within the Shell.
-.sh "SEE ALSO"
-sh (I)
-.sh BUGS