Rename mxsh to sh.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-12-20 20:40:22 +01:00
parent 98a87fa1e5
commit 1a92a6991d
3 changed files with 1 additions and 6 deletions

1
utils/.gitignore vendored
View File

@ -25,7 +25,6 @@ ls
memstat memstat
mkdir mkdir
mv mv
mxsh
pager pager
pwd pwd
rm rm

View File

@ -41,7 +41,6 @@ ls \
memstat \ memstat \
mkdir \ mkdir \
mv \ mv \
mxsh \
pager \ pager \
pwd \ pwd \
rm \ rm \
@ -73,9 +72,6 @@ uninstall:
%: %.cpp %: %.cpp
$(CXX) -std=gnu++11 $(CPPFLAGS) $(CXXFLAGS) $< -o $@ $(CXX) -std=gnu++11 $(CPPFLAGS) $(CXXFLAGS) $< -o $@
sh: mxsh
cp $< $@
clean: clean:
rm -f $(BINARIES) *.o rm -f $(BINARIES) *.o

View File

@ -15,7 +15,7 @@
You should have received a copy of the GNU General Public License along with You should have received a copy of the GNU General Public License along with
this program. If not, see <http://www.gnu.org/licenses/>. this program. If not, see <http://www.gnu.org/licenses/>.
mxsh.cpp sh.cpp
A simple and hacky Sortix shell. A simple and hacky Sortix shell.
*******************************************************************************/ *******************************************************************************/