Skip to content
Advertisement

Encountered error using awk in an alias command (bash)

Good day,

Im trying to create an alias using awk to filter based on a column which has number greater than a set limit. Its ok when used as a command line but when I assign it as an alias, it prompts error.

JavaScript

$5 is column 5 on the grep output while 15 is the set limit. When I set the alias command, it threw read only file system for any limit i set. I tried changing single qoute using double qoute but then it prompted a different issue.

JavaScript

Ive seen some similar cases in the forum which suggest using function instead but im not familiar with that. I tried doing it but another error was prompted.

JavaScript

Appreciate the help on this issue of mine. Thanks a lot in advance.

regards, Mike

Advertisement

Answer

Here is one way to achieve your goal

JavaScript

Please note The export -f feature is specific to Bash Refer Export Man Page

You don’t have to use grep, single awk can do your job, like below awk '/SoftBin 108/ && $5>15' "$@"

Test below one

JavaScript

your sample file for testing

JavaScript

call

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement