Skip to main content
edited tags
Link
don_crissti
  • 85.7k
  • 31
  • 234
  • 262
more homework
Link
xenoterracide
  • 61.4k
  • 79
  • 196
  • 252
deleted 130 characters in body
Source Link
Host Post
  • 207
  • 3
  • 4
  • 7

How to write a shell script which searches the current UNIX directory and returns the names of all files of type ASCII text? I tried this:

#!/bin/bash
echo -n "Enter a letter:"
read A
echo ${A}|od -t d1|awk '{printf "%s",$2}';echo

How to write a shell script which searches the current UNIX directory and returns the names of all files of type ASCII text? I tried this:

#!/bin/bash
echo -n "Enter a letter:"
read A
echo ${A}|od -t d1|awk '{printf "%s",$2}';echo

How to write a shell script which searches the current UNIX directory and returns the names of all files of type ASCII text?

edited title; edited tags
Link
mattdm
  • 41.3k
  • 18
  • 104
  • 140
Loading
deleted 15 characters in body
Source Link
Michael Mrozek
  • 95.7k
  • 40
  • 245
  • 236
Loading
Source Link
Host Post
  • 207
  • 3
  • 4
  • 7
Loading