summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2022-04-01 13:18:49 -0500
committerJoel Sherrill <joel@rtems.org>2022-04-05 13:13:31 -0500
commit5f8c41c389a32b3c8d0503e550c6388f62f2927f (patch)
tree9f975164ebb0540675ff5b03dcd8db2fe256f8b9 /cpukit/libmisc/shell
parentbsp/stm32h7: Convert to UNIX line endings (diff)
downloadrtems-5f8c41c389a32b3c8d0503e550c6388f62f2927f.tar.bz2
Update email address of Fernando Ruiz Casas to <fruizcasas@gmail.com>
This was requested to be executed prior to relicensing to BSD-2.
Diffstat (limited to 'cpukit/libmisc/shell')
-rw-r--r--cpukit/libmisc/shell/cat_file.c12
-rw-r--r--cpukit/libmisc/shell/cmds.c12
-rw-r--r--cpukit/libmisc/shell/login_check.c1
-rw-r--r--cpukit/libmisc/shell/main_alias.c12
-rw-r--r--cpukit/libmisc/shell/main_blksync.c12
-rw-r--r--cpukit/libmisc/shell/main_cat.c12
-rw-r--r--cpukit/libmisc/shell/main_cd.c12
-rw-r--r--cpukit/libmisc/shell/main_chdir.c12
-rw-r--r--cpukit/libmisc/shell/main_chmod.c12
-rw-r--r--cpukit/libmisc/shell/main_chroot.c12
-rw-r--r--cpukit/libmisc/shell/main_date.c15
-rw-r--r--cpukit/libmisc/shell/main_dir.c12
-rw-r--r--cpukit/libmisc/shell/main_exit.c12
-rw-r--r--cpukit/libmisc/shell/main_id.c12
-rw-r--r--cpukit/libmisc/shell/main_logoff.c12
-rw-r--r--cpukit/libmisc/shell/main_mdump.c12
-rw-r--r--cpukit/libmisc/shell/main_medit.c12
-rw-r--r--cpukit/libmisc/shell/main_mfill.c12
-rw-r--r--cpukit/libmisc/shell/main_mkdir.c12
-rw-r--r--cpukit/libmisc/shell/main_mmove.c12
-rw-r--r--cpukit/libmisc/shell/main_mount.c12
-rw-r--r--cpukit/libmisc/shell/main_mount_nfs.c12
-rw-r--r--cpukit/libmisc/shell/main_pwd.c12
-rw-r--r--cpukit/libmisc/shell/main_rmdir.c12
-rw-r--r--cpukit/libmisc/shell/main_tty.c12
-rw-r--r--cpukit/libmisc/shell/main_umask.c12
-rw-r--r--cpukit/libmisc/shell/main_unmount.c12
-rw-r--r--cpukit/libmisc/shell/main_whoami.c12
-rw-r--r--cpukit/libmisc/shell/shell.c14
-rw-r--r--cpukit/libmisc/shell/shell_cmdset.c13
-rw-r--r--cpukit/libmisc/shell/write_file.c14
31 files changed, 211 insertions, 158 deletions
diff --git a/cpukit/libmisc/shell/cat_file.c b/cpukit/libmisc/shell/cat_file.c
index f7a530c56c..50aaa8e3f4 100644
--- a/cpukit/libmisc/shell/cat_file.c
+++ b/cpukit/libmisc/shell/cat_file.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CAT Command Implementation
+ */
+
/*
- * CAT Command Implementation
- *
- * Author:
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/cmds.c b/cpukit/libmisc/shell/cmds.c
index dbc63639eb..608961de4c 100644
--- a/cpukit/libmisc/shell/cmds.c
+++ b/cpukit/libmisc/shell/cmds.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief XXX -- Just monitor commands until those can be integrated better
+ */
+
/*
- * XXX -- Just monitor commands until those can be integrated better
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/login_check.c b/cpukit/libmisc/shell/login_check.c
index 023f5c9281..5ba2332070 100644
--- a/cpukit/libmisc/shell/login_check.c
+++ b/cpukit/libmisc/shell/login_check.c
@@ -7,7 +7,6 @@
/*
* Copyright (c) 2009-2014 embedded brains GmbH and others.
*
- *
* Based on work from Chris Johns and Fernando Ruiz.
*
* Derived from file "cpukit/libmisc/shell/shell.c".
diff --git a/cpukit/libmisc/shell/main_alias.c b/cpukit/libmisc/shell/main_alias.c
index 63a808c066..163a8475aa 100644
--- a/cpukit/libmisc/shell/main_alias.c
+++ b/cpukit/libmisc/shell/main_alias.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief ALIAS Shell Command Implmentation
+ */
+
/*
- * ALIAS Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_blksync.c b/cpukit/libmisc/shell/main_blksync.c
index 9b1cd24fbc..bc429e08f2 100644
--- a/cpukit/libmisc/shell/main_blksync.c
+++ b/cpukit/libmisc/shell/main_blksync.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief RM Shell Command Implmentation
+ */
+
/*
- * RM Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_cat.c b/cpukit/libmisc/shell/main_cat.c
index 145db6b928..539f4493e6 100644
--- a/cpukit/libmisc/shell/main_cat.c
+++ b/cpukit/libmisc/shell/main_cat.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CAT Shell Command Implmentation
+ */
+
/*
- * CAT Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_cd.c b/cpukit/libmisc/shell/main_cd.c
index 7b138742d3..dca1618d70 100644
--- a/cpukit/libmisc/shell/main_cd.c
+++ b/cpukit/libmisc/shell/main_cd.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CD Shell Command Implmentation
+ */
+
/*
- * CD Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_chdir.c b/cpukit/libmisc/shell/main_chdir.c
index 08d1c6e1ef..69f439d6f8 100644
--- a/cpukit/libmisc/shell/main_chdir.c
+++ b/cpukit/libmisc/shell/main_chdir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CHDIR Shell Command Implmentation
+ */
+
/*
- * CHDIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_chmod.c b/cpukit/libmisc/shell/main_chmod.c
index 8b932fac15..1f646d92d4 100644
--- a/cpukit/libmisc/shell/main_chmod.c
+++ b/cpukit/libmisc/shell/main_chmod.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CHMOD Shell Command Implmentation
+ */
+
/*
- * CHMOD Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_chroot.c b/cpukit/libmisc/shell/main_chroot.c
index 415a47c912..247cd2a22f 100644
--- a/cpukit/libmisc/shell/main_chroot.c
+++ b/cpukit/libmisc/shell/main_chroot.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CHROOT Shell Command Implmentation
+ */
+
/*
- * CHROOT Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_date.c b/cpukit/libmisc/shell/main_date.c
index f93e5df016..5cae378b3c 100644
--- a/cpukit/libmisc/shell/main_date.c
+++ b/cpukit/libmisc/shell/main_date.c
@@ -1,11 +1,12 @@
+/**
+ * @file
+ *
+ * @brief DATE Shell Command Implmentation
+ */
+
/*
- * DATE Shell Command Implmentation
- *
- * OAuthor: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
- *
- * Significantly rewritten by Joel Sherrill <joel.sherrill@oarcorp.com>.
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
+ * Copyright (c) 2008 Joel Sherrill <joel.sherrill@oarcorp.com>.
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_dir.c b/cpukit/libmisc/shell/main_dir.c
index 7d8e8bcb6b..6357a99243 100644
--- a/cpukit/libmisc/shell/main_dir.c
+++ b/cpukit/libmisc/shell/main_dir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief DIR Shell Command Implmentation
+ */
+
/*
- * DIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_exit.c b/cpukit/libmisc/shell/main_exit.c
index e44f853494..b1ad9579ba 100644
--- a/cpukit/libmisc/shell/main_exit.c
+++ b/cpukit/libmisc/shell/main_exit.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief exit Shell Command Implmentation
+ */
+
/*
- * exit Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_id.c b/cpukit/libmisc/shell/main_id.c
index 2d2b05fe11..bd1906cab1 100644
--- a/cpukit/libmisc/shell/main_id.c
+++ b/cpukit/libmisc/shell/main_id.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief ID Command Implementation
+ */
+
/*
- * ID Command Implementation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_logoff.c b/cpukit/libmisc/shell/main_logoff.c
index 67a2967228..99ed957161 100644
--- a/cpukit/libmisc/shell/main_logoff.c
+++ b/cpukit/libmisc/shell/main_logoff.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief LOGOFF Shell Command Implmentation
+ */
+
/*
- * LOGOFF Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mdump.c b/cpukit/libmisc/shell/main_mdump.c
index 7f49480927..214b57c401 100644
--- a/cpukit/libmisc/shell/main_mdump.c
+++ b/cpukit/libmisc/shell/main_mdump.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MDUMP Shell Command Implmentation
+ */
+
/*
- * MDUMP Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* Reworked by Ric Claus at SLAC.Stanford.edu
*
diff --git a/cpukit/libmisc/shell/main_medit.c b/cpukit/libmisc/shell/main_medit.c
index d14a518800..e175868cac 100644
--- a/cpukit/libmisc/shell/main_medit.c
+++ b/cpukit/libmisc/shell/main_medit.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MEDIT Shell Command Implmentation
+ */
+
/*
- * MEDIT Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mfill.c b/cpukit/libmisc/shell/main_mfill.c
index 47a55d3a2f..4ac6bfcf31 100644
--- a/cpukit/libmisc/shell/main_mfill.c
+++ b/cpukit/libmisc/shell/main_mfill.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MFILL Shell Command Implmentation
+ */
+
/*
- * MFILL Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mkdir.c b/cpukit/libmisc/shell/main_mkdir.c
index 5595bfd3fd..c3027800bc 100644
--- a/cpukit/libmisc/shell/main_mkdir.c
+++ b/cpukit/libmisc/shell/main_mkdir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MKDIR Shell Command Implmentation
+ */
+
/*
- * MKDIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mmove.c b/cpukit/libmisc/shell/main_mmove.c
index a319355444..38731b10a2 100644
--- a/cpukit/libmisc/shell/main_mmove.c
+++ b/cpukit/libmisc/shell/main_mmove.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief MMOVE Shell Command Implmentation
+ */
+
/*
- * MMOVE Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mount.c b/cpukit/libmisc/shell/main_mount.c
index d326a59097..5a6b36cede 100644
--- a/cpukit/libmisc/shell/main_mount.c
+++ b/cpukit/libmisc/shell/main_mount.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Implmentation
+ */
+
/*
- * Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_mount_nfs.c b/cpukit/libmisc/shell/main_mount_nfs.c
index 8a2aaa4b29..c0ad3ebdb0 100644
--- a/cpukit/libmisc/shell/main_mount_nfs.c
+++ b/cpukit/libmisc/shell/main_mount_nfs.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Implmentation
+ */
+
/*
- * Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_pwd.c b/cpukit/libmisc/shell/main_pwd.c
index ea657dc848..1e3ef450e8 100644
--- a/cpukit/libmisc/shell/main_pwd.c
+++ b/cpukit/libmisc/shell/main_pwd.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief PWD Shell Command Implmentation
+ */
+
/*
- * PWD Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_rmdir.c b/cpukit/libmisc/shell/main_rmdir.c
index 250da83d27..b9cde24886 100644
--- a/cpukit/libmisc/shell/main_rmdir.c
+++ b/cpukit/libmisc/shell/main_rmdir.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief RMDIR Shell Command Implmentation
+ */
+
/*
- * RMDIR Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_tty.c b/cpukit/libmisc/shell/main_tty.c
index 29dc673dbb..9b884a612c 100644
--- a/cpukit/libmisc/shell/main_tty.c
+++ b/cpukit/libmisc/shell/main_tty.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief TTY Shell Command Implmentation
+ */
+
/*
- * TTY Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_umask.c b/cpukit/libmisc/shell/main_umask.c
index 66cd102195..a5c983d126 100644
--- a/cpukit/libmisc/shell/main_umask.c
+++ b/cpukit/libmisc/shell/main_umask.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief UMASK Shell Command Implmentation
+ */
+
/*
- * UMASK Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_unmount.c b/cpukit/libmisc/shell/main_unmount.c
index e7e5fddc68..8c56727f42 100644
--- a/cpukit/libmisc/shell/main_unmount.c
+++ b/cpukit/libmisc/shell/main_unmount.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Implmentation
+ */
+
/*
- * Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/main_whoami.c b/cpukit/libmisc/shell/main_whoami.c
index 8771c66c50..d2183266e6 100644
--- a/cpukit/libmisc/shell/main_whoami.c
+++ b/cpukit/libmisc/shell/main_whoami.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief WHOAMI Shell Command Implmentation
+ */
+
/*
- * WHOAMI Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/shell.c b/cpukit/libmisc/shell/shell.c
index 3268bfe4f5..a2ed909aae 100644
--- a/cpukit/libmisc/shell/shell.c
+++ b/cpukit/libmisc/shell/shell.c
@@ -1,11 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Instantatiate a new terminal shell.
+ */
+
/*
- *
- * Instantatiate a new terminal shell.
- *
- * Author:
- *
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/shell_cmdset.c b/cpukit/libmisc/shell/shell_cmdset.c
index 95f180bbb5..89a6aeb32b 100644
--- a/cpukit/libmisc/shell/shell_cmdset.c
+++ b/cpukit/libmisc/shell/shell_cmdset.c
@@ -1,10 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Shell Command Set Management
+ */
+
/*
- *
- * Shell Command Set Management
- *
- * Author:
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
diff --git a/cpukit/libmisc/shell/write_file.c b/cpukit/libmisc/shell/write_file.c
index cc57f4c2c2..1cceb0c6ea 100644
--- a/cpukit/libmisc/shell/write_file.c
+++ b/cpukit/libmisc/shell/write_file.c
@@ -1,11 +1,11 @@
+/**
+ * @file
+ *
+ * @brief Write buffer to a file
+ */
+
/*
- *
- * Write buffer to a file
- *
- * Author:
- *
- * WORK: fernando.ruiz@ctv.es
- * HOME: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at